forked from snphq/generator-sp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.54 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
77
78
79
80
81
82
83
{
"name": "generator-sp",
"version": "2.0.3",
"description": "A generator for Yeoman",
"keywords": [
"yeoman-generator"
],
"homepage": "https://github.com/snphq/generator-sp",
"bugs": {
"url": "https://github.com/snphq/generator-sp/issues"
},
"author": "Efremov Alex (https://github.com/lexich)",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/snphq/generator-sp.git"
},
"scripts": {
"test": "xo && TEST=true mocha",
"test-dev": "TEST=true mocha --watch",
"precommit": "npm test"
},
"files": [
"generators"
],
"dependencies": {
"generator-git-init": "^1.1.1",
"html-wiring": "^1.0.1",
"lodash": "^4.0.0",
"mkdirp": "^0.5.0",
"yeoman-generator": "^0.22.3"
},
"devDependencies": {
"husky": "^0.10.2",
"mocha": "^2.0.0",
"underscore": "^1.8.2",
"xo": "^0.12.1",
"yeoman-assert": "^2.1.1",
"yeoman-test": "^1.0.0"
},
"peerDependencies": {
"yo": ">=1.2.0"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT"
}
],
"directories": {
"test": "test"
},
"xo": {
"files": [
"test/*.js",
"generators/*/*.js"
],
"ignores": [
"generators/*/templates/**"
],
"envs": [
"node",
"mocha"
],
"space": 2,
"rules": {
"comma-dangle": [
2,
"always-multiline"
],
"camelcase": [
0,
{
"properties": "never"
}
]
}
},
"license": "MIT"
}