forked from GoogleChromeLabs/clooney
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
{
"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",
"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.1.1"
},
"devDependencies": {
"chai": "4.2.0",
"karma": "3.1.3",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-mocha": "1.3.0",
"mocha": "5.2.0",
"prettier": "1.15.3",
"rollup": "0.67.4",
"rollup-plugin-node-resolve": "4.0.0",
"typescript": "3.2.2"
}
}