forked from NativeScript/css-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
59
{
"name": "mocha-typescript-seed",
"version": "1.0.0",
"description": "A project with mocha-typescript enabled",
"main": "index.js",
"scripts": {
"test": "tsc && nyc mocha && tslint --project . && node test/perf.js",
"watch": "mocha-typescript-watch",
"prepare": "tsc && tslint --project .",
"tslint-fix": "tslint --fix --project .",
"tslint": "tslint --project .",
"perf": "tsc && node test/perf.js",
"inspect": "tsc && echo 'Open in chrome: chrome://inspect/#devices' && node --inspect --debug-brk test/prof.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pana-cc/mocha-typescript-seed.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pana-cc/mocha-typescript-seed/issues"
},
"homepage": "https://github.com/pana-cc/mocha-typescript-seed#readme",
"devDependencies": {
"@types/chai": "*",
"@types/mocha": "*",
"@types/node": "^8.0.47",
"chai": "*",
"css-parse": "^2.0.0",
"mocha": "*",
"mocha-typescript": "*",
"nyc": "*",
"shady-css-parser": "^0.1.0",
"source-map-support": "*",
"typescript": "^2.6.1"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 70,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
},
"dependencies": {
"tslint": "^5.8.0"
}
}