forked from juicekit/js-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.15 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": "@juicekit/rules",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "./node_modules/.bin/nyc mocha --compilers ts:ts-node/register ./src/**/*.spec.ts"
},
"contributors": [
{
"name": "Yoel Nunez",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/juicekit/js-rules.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.47",
"@types/sinon": "^4.1.3",
"chai": "^4.1.2",
"codacy-coverage": "^2.0.3",
"gulp": "^3.9.1",
"gulp-mocha": "^5.0.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"sinon": "^4.2.1",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"**/*.js"
],
"reporter": [
"html",
"lcov"
],
"all": true
},
"dependencies": {
"@juicekit/fastrunner": "^3.0.0"
}
}