forked from mateusKoppe/generator-batangularjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.26 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.26 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
58
59
60
{
"name": "generator-batangularjs",
"version": "1.2.4",
"description": "Scaffold a AngularJs Application with ES2015 features and give to you a development kit",
"homepage": "",
"author": {
"name": "Mateus Koppe",
"email": "mateus.koppe@gmail.com",
"url": "https://github.com/mateusKoppe"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"angularjs",
"development",
"scaffold",
"yeoman",
"framework",
"component",
"gulp",
"yeoman-generator"
],
"devDependencies": {
"yeoman-test": "^1.6.0",
"yeoman-assert": "^3.0.0",
"coveralls": "^2.13.1",
"nsp": "^2.6.3",
"eslint": "^4.1.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^19.0.2",
"jest-cli": "^20.0.0"
},
"repository": "mateusKoppe/generator-batangularjs",
"license": "MIT",
"dependencies": {
"yeoman-generator": "^1.0.0",
"yosay": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.spec.js"
]
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
}
}