-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
49 lines (49 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "clooneyjs",
"version": "0.7.0",
"description": "Clooney is an actor library for the web",
"main": "clooney.js",
"module": "clooney.js",
"typings": "clooney.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/clooney"
},
"scripts": {
"test": "npm run linter && npm run build && npm run unittest",
"unittest": "karma start",
"linter": "prettier --write src/*.ts tests/*.js tests/fixtures/*.js",
"watchtest": "karma start --no-single-run --browsers ChromeHeadless",
"version": "sed -i.bak -e 's!clooneyjs@[0-9.]*!clooneyjs@'${npm_package_version}'!' README.md && git add README.md",
"mypublish": "npm run build && npm run test && cp README.md package.json dist && npm publish dist",
"build": "rm -rf dist/* && npm run compile",
"compile": "tsc --outDir dist && rollup -c rollup.config.js"
},
"keywords": [],
"author": {
"name": "Surma",
"email": "surma@google.com"
},
"contributors": [
{
"name": "Surma",
"email": "surma@google.com"
}
],
"license": "Apache-2.0",
"dependencies": {
"comlinkjs": "3.2.0"
},
"devDependencies": {
"chai": "4.2.0",
"karma": "4.2.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "1.3.0",
"mocha": "6.2.0",
"prettier": "1.18.2",
"rollup": "1.20.1",
"rollup-plugin-node-resolve": "4.0.1",
"typescript": "3.5.3"
}
}