-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 927 Bytes
/
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
{
"name": "dot-dot-dot",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "browserify js/app.js -d -o dist/app.js -t [ babelify ] && sass sass/* css/*",
"watch": "parallelshell \"watchify js/app.js -d -o dist/app.js -t [ babelify ]\" \"sass --watch sass:css\"",
"start": "python -m SimpleHTTPServer"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lindzeng/dot-dot-dot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lindzeng/dot-dot-dot/issues"
},
"homepage": "https://github.com/lindzeng/dot-dot-dot#readme",
"devDependencies": {
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"parallelshell": "^2.0.0",
"sass": "^0.5.0",
"watchify": "^3.9.0"
}
}