forked from halfzebra/create-elm-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.79 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "create-elm-app",
"description": "Elm apps with zero configuration",
"version": "0.0.0-development",
"author": "Eduard Kyvenko <[email protected]>",
"bin": {
"elm-app": "./bin/elm-app-cli.js",
"create-elm-app": "./bin/create-elm-app-cli.js"
},
"bugs": {
"url": "https://github.com/halfzebra/create-elm-app/issues",
"email": "[email protected]"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "^6.26.0",
"chalk": "^2.3.0",
"clean-webpack-plugin": "^0.1.17",
"cli-table": "0.3.1",
"connect-history-api-fallback": "^1.5.0",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"dotenv": "^4.0.0",
"elm": "^0.18.0",
"elm-hot-loader": "0.5.4",
"elm-test": "^0.18.10",
"elm-webpack-loader": "^4.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"fs-extra": "^4.0.2",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"minimist": "1.2.0",
"postcss-loader": "^2.0.8",
"prompt": "1.0.0",
"react-dev-utils": "^4.2.1",
"react-error-overlay": "^3.0.0",
"string-replace-loader": "^1.3.0",
"style-loader": "^0.19.0",
"sw-precache-webpack-plugin": "^0.11.4",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"dir-compare": "^1.4.0",
"eslint": "^4.11.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"nightmare": "^2.10.0",
"prettier": "^1.8.2",
"rimraf": "^2.6.2",
"semantic-release": "^8.2.0",
"unexpected": "^10.36.2"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"bin",
"config",
"scripts",
"template",
"README.md"
],
"keywords": [
"cli",
"elm",
"webpack"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/halfzebra/create-elm-app"
},
"scripts": {
"cz": "git-cz",
"eslint": "eslint .",
"prettier": "prettier --write --single-quote '{bin,config,scripts,template/src,tests}/**/*.js'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run test:cli && npm run test:functional",
"test:cli": "mocha tests/cliAccessibility.js --reporter spec --timeout 15000",
"test:functional": "mocha tests/*.spec.js --reporter spec --timeout 15000"
}
}