-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "generator-spike",
"version": "0.0.1-beta.6",
"description": "Generator for React apps, reducers, components, and mock api.",
"scripts": {
"lint": "eslint src . --fix",
"test": "npm run lint && babel-node test.js",
"test:integration": "babel-node tests/integration/index.js",
"copy:templates": "babel-node copyTemplates.js",
"babel": "babel",
"build": "sh ./scripts/build.sh",
"changelog": "export $(cat .env.changelog | xargs) && github-changes -o AnalyticsFire -r generator-spike -b develop --token ${GITHUB_TOKEN} --only-pulls --use-commit-body"
},
"keywords": [
"React",
"Redux",
"yeoman-generator",
"scaffloding"
],
"author": "",
"dependencies": {
"config": "^1.26.1",
"github-changes": "^1.1.0",
"selenium-webdriver": "^3.4.0",
"yargs": "^8.0.1",
"yeoman-generator": "^1.1.1"
},
"peerDependencies": {
"yo": "^1.8.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"chai": "^3.5.0",
"eslint": "3.19.x",
"eslint-config-airbnb": "14.1.x",
"eslint-import-resolver-babel-module": "3.0.x",
"eslint-plugin-import": "2.2.x",
"eslint-plugin-jsx-a11y": "4.0.x",
"eslint-plugin-react": "6.9.x",
"fs-extra": "^3.0.1",
"mocha": "^3.4.1",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0"
},
"license": "MIT"
}