forked from d6u/web-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "web-playground",
"version": "0.4.0",
"description": "WebPlayground bootstraps simple HTML, JS, CSS files and setup live-reloading server for you.",
"main": "lib/index.js",
"bin": {
"wpg": "./bin/wpg.js"
},
"scripts": {
"lint": "eslint ./bin ./lib",
"test": "jest --coverage",
"check": "npm run lint && npm test",
"coverage": "npm run check && cat ./coverage/coverage-final.json | ./node_modules/codecov.io/bin/codecov.io.js",
"preversion": "npm run check",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d6u/web-playground.git"
},
"keywords": [
"HTML",
"JavaScript",
"CSS",
"playground"
],
"author": "Daiwei Lu <daiweilu123@gmail.com> (http://daiwei.lu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/d6u/web-playground/issues"
},
"homepage": "https://github.com/d6u/web-playground#readme",
"engines": {
"node": ">= 4"
},
"dependencies": {
"autoprefixer": "^6.0.3",
"babel": "^5.8.23",
"bluebird": "^3.0.0",
"browser-sync": "^2.9.6",
"chalk": "^1.1.1",
"chokidar": "^1.1.0",
"co": "^4.6.0",
"commander": "^2.8.1",
"ejs": "^2.3.4",
"express": "^4.13.3",
"js-yaml": "^3.4.2",
"node-sass": "^3.3.3",
"normalize.css": "^3.0.3",
"portscanner": "^1.0.0",
"postcss": "^5.0.8",
"ramda": "~0.18.0",
"resolve": "^1.1.6",
"rx": "^4.0.0"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"eslint": "^1.10.2",
"eslint-plugin-jasmine": "^1.4.0",
"jest-cli": "^0.7.0"
}
}