-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@rispa/cli",
"version": "4.2.2",
"description": "Rispa CLI - command line utility allowing the creation of project structure, managing plugins, run generators",
"main": "index.js",
"bin": {
"ris": "./bin/ris.js"
},
"engines": {
"node": ">=7.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rispa-io/rispa-cli.git"
},
"keywords": [
"rispa",
"cli",
"project",
"generator"
],
"author": "Andrew Laiff",
"license": "MIT",
"bugs": {
"url": "https://github.com/rispa-io/rispa-cli/issues"
},
"homepage": "https://github.com/rispa-io/rispa-cli#readme",
"dependencies": {
"@rispa/generator": ">=4.0.0 < 5.0.0",
"axios": "^0.16.2",
"chalk": "^2.0.1",
"cli-cursor": "^2.1.0",
"cross-spawn": "^5.1.0",
"date-fns": "^2.0.0-alpha.26",
"debug": "^2.6.8",
"dotenv": "^4.0.0",
"figures": "^2.0.0",
"fs-extra": "^4.0.0",
"glob": "^7.1.2",
"global-prefix": "^1.0.1",
"inquirer": "^3.2.1",
"listr": "^0.12.0",
"ramda": "^0.24.1",
"sudo-block": "^1.2.0"
},
"devDependencies": {
"@rispa/eslint-config": ">=3.0.0",
"jest": "^23.6.0"
},
"peerDependencies": {
"yarn": ">=1.0.0"
},
"scripts": {
"test": "jest",
"test:update": "jest -u",
"test:coverage": "jest --coverage",
"lint": "rispa-eslint .",
"lint:fix": "rispa-eslint . --fix"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}