-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1013 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
{
"name": "dsplay",
"version": "0.0.1",
"description": "Small toolset for canvas 2D.",
"main": "dsplay.min.js",
"scripts": {
"start": "watchify src/index.js -s CS -t babelify -o dsplay.js -dv & http-server . -s",
"test": "mocha --compilers js:babel-core/register --es_staging -b",
"dist": "browserify src/index.js -s CS -t babelify | uglifyjs -mc > dsplay.min.js",
"docs": "esdoc -c esdoc.json",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git://github.com/gamestdio/dsplay.git"
},
"author": "mdtarso <maurodetarso@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.4.1",
"esdoc": "^0.4.3",
"http-server": "^0.8.0",
"mocha": "^2.3.4",
"uglify-js": "^2.4.19",
"watchify": "^3.1.0"
}
}