forked from catalyst/catalyst-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
{
"name": "catalyst-frontend",
"version": "0.1.2",
"description": "A configurable frontend build pipeline that caters for everything from simple SASS compilation only, right through to ES2015 plus React.",
"homepage": "https://github.com/jenofdoom/catalyst-frontend",
"author": {
"name": "Jen Zajac",
"email": "[email protected]",
"url": "https://github.com/jenofdoom"
},
"bin": {
"catalyst-frontend": "./bin/catalyst-frontend.js"
},
"main": "./generators/app/index.js",
"keywords": [
"frontend",
"gulp",
"bootstrap",
"jquery",
"webpack",
"react",
"es6",
"es2015",
"sass",
"scss",
"yeoman-generator"
],
"devDependencies": {
"yeoman-test": "^1.6.0",
"yeoman-assert": "^3.0.0",
"nsp": "^2.6.3",
"eslint": "^3.18.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4"
},
"dependencies": {
"chalk": "^1.1.3",
"lodash.kebabcase": "^4.1.1",
"yargs": "^8.0.1",
"yeoman-environment": "^1.6.6",
"yeoman-generator": "^1.0.0"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"prepare": "nsp check",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/jenofdoom/catalyst-frontend.git"
},
"license": "GPL-3.0"
}