-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.08 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.08 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
{
"name": "@kano/common",
"version": "1.0.3",
"main": "index.js",
"repository": "git@github.com:KanoComputing/web-common.git",
"author": "Paul Varache <paul@kano.me>",
"license": "MIT",
"scripts": {
"serve-test": "web-tester serve **/*.test.js",
"test": "web-tester run **/*.test.js",
"test-ci": "yarn run --silent test -r xunit > test-results.xml",
"coverage": "web-tester cover **/*.test.js",
"coverage-ci": "yarn run --silent coverage -r cobertura",
"lint": "eslint ./index.js ./cancellation/index.js ./events/index.js ./events/emitter.js ./lifecycle/index.js ./lifecycle/disposables.js ./time/index.js",
"lint-ci": "yarn lint -f checkstyle -o eslint.xml",
"prepublishOnly": "yarn tsc && yarn lint",
"tsc": "tsc",
"serve": "es6-server"
},
"devDependencies": {
"@kano/es6-server": "^1.0.3",
"@kano/eslint-config": "^1.0.0",
"@kano/web-tester": "^1.0.0-alpha.14",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"typescript": "^3.5.2"
}
}