-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.85 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
50
51
52
53
54
55
56
57
58
{
"name": "ptz-assert",
"version": "1.6.8",
"description": "ptz-assert is an assertion library for creating less verbose tests that wrappers npm assert",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"lint": "tslint ./src/**/*.ts ./src/**/*.test.ts ./src/**/*.d.ts",
"js": "rimraf dist-esnext && tsc && rimraf dist && babel dist-esnext -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=e8f9617b-0ab3-409e-afca-406d99c879a4 || 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/angeloocana/ptz-assert.git"
},
"author": "angeloocana.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/angeloocana/ptz-assert/issues"
},
"homepage": "https://github.com/angeloocana/ptz-assert#readme",
"devDependencies": {
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/sinon": "^2.1.2",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"codecov": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.0.2",
"nyc": "^8.4.0",
"opn-cli": "^3.1.0",
"ptz-assert": "^1.6.3",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"tslint": "^4.5.1",
"typescript": "^2.2.2"
},
"dependencies": {
"assert": "^1.4.1",
"ptz-log": "^1.0.0"
},
"keywords": [
"polutz",
"ptz",
"ptz-assert",
"assertion",
"library"
]
}