-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.14 KB
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
{
"name": "generator-ekstep-content-plugin",
"private": true,
"version": "0.1.2",
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman",
"yeoman-generator"
],
"devDependencies": {
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.1",
"lodash": "^4.17.4",
"nsp": "^2.6.3",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0"
},
"dependencies": {
"yeoman-generator": "^1.0.0",
"chalk": "^1.1.3",
"yosay": "^2.0.0"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test": "jest __tests__/**",
"test:watch": "jest --watch __tests__/**",
"build": "npm install && npm test"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"indent": [
"error",
4
]
},
"env": {
"jest": true,
"node": true
}
},
"repository": "ekstep/generator-ekstep-content-plugin",
"license": "MIT"
}