This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.98 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
{
"name": "elm-factory",
"version": "0.7.1",
"description": "dev server and build system wrapping elm-reactor",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/farism/elm-factory.git"
},
"keywords": [
"elm",
"elm-css",
"livereload",
"cli"
],
"author": "Faris Mustafa <farismmk@gmail.com>",
"license": "MIT",
"bin": {
"elm-factory": "./bin/cli.js"
},
"scripts": {
"build": "babel src -d lib",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm run build",
"test": "nyc --reporter=html --reporter=text mocha",
"test:mocha": "mocha"
},
"dependencies": {
"async-replace": "^1.0.1",
"autoprefixer": "^7.1.3",
"browser-sync": "^2.18.13",
"check-types": "^7.3.0",
"cssnano": "^3.10.0",
"elm-css": "^0.6.1",
"execa": "^0.8.0",
"find-elm-dependencies": "^1.0.1",
"find-up": "^2.1.0",
"fkill": "^5.0.0",
"fs-extra": "^4.0.1",
"gulp": "^3.9.1",
"gulp-any-template": "^0.3.1",
"gulp-if": "^2.0.2",
"gulp-rename": "^1.2.2",
"http-proxy-middleware": "^0.17.4",
"lodash": "^4.17.4",
"nocache": "^2.0.0",
"node-elm-compiler": "^4.3.3",
"ora": "^1.3.0",
"postcss": "^6.0.10",
"postcss-url": "^7.1.2",
"pumpify": "^1.3.5",
"run-sequence": "^2.1.0",
"tmp-promise": "^1.0.3",
"uglify-js": "^3.0.28",
"url-join": "^2.0.2",
"xxhashjs": "^0.2.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-fs": "^1.0.0",
"coveralls": "^3.0.0",
"gulp-debug": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"portscanner": "^2.1.1",
"request-promise-native": "^1.0.4",
"sinon": "^4.0.0"
},
"engineStrict": true,
"engines": {
"node": ">=6.0.0"
}
}