-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.65 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": "ptz-action-domain",
"version": "1.0.0",
"description": "this is a Polutz module.",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"lint": "tslint ./src/**/*.ts ./src/**/*.test.ts ./src/**/*.d.ts",
"js": "rimraf dist-es6 && tsc && rimraf dist && babel dist-es6 -d dist --presets es2015 --source-maps",
"pretest": "npm-run-all --parallel js lint",
"mocha": "mocha ./dist/**/*.js --require babel-polyfill",
"test": "nyc npm run mocha && nyc report --reporter=html --reporter=text-lcov > coverage.lcov && f() { EXIT=0; codecov --token=7a80ed20-dee8-4343-83a9-8dc25398a34c || exit $EXIT; }; f",
"test:cover": "npm run test && opn ./coverage/lcov-report/index.html",
"predebug": "npm run pretest",
"debug": "node --nolazy --debug-brk=5858 dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polutz/ptz-action-domain.git"
},
"author": "github.com/angeloocana",
"license": "ISC",
"bugs": {
"url": "https://github.com/polutz/ptz-action-domain/issues"
},
"homepage": "https://github.com/polutz/ptz-action-domain#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"codecov": "^2.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"ptz-assert": "^1.6.3",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"tslint": "^5.0.0",
"typescript": "^2.2.2",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"opn-cli": "^3.1.0"
},
"dependencies": {
"ptz-log": "^1.0.0",
"ptz-core-domain": "^1.3.3"
}
}