-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 928 Bytes
/
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
{
"name": "@rispa/generator",
"version": "4.1.4",
"description": "Generators for rispa",
"main": "./index.js",
"repository": "https://github.com/rispa-io/rispa-generator.git",
"author": "Andrew Laiff",
"license": "MIT",
"dependencies": {
"babel-register": "^6.24.1",
"node-plop": "^0.6.0"
},
"devDependencies": {
"@rispa/eslint-config": ">=3.0.0",
"jest": "^20.0.3"
},
"scripts": {
"test": "jest",
"test:update": "jest -u",
"test:coverage": "jest --coverage",
"lint": "rispa-eslint .",
"lint:fix": "rispa-eslint . --fix"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/index.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/generators/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}