-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "paths-js",
"version": "0.4.11",
"author": {
"name": "Andrea Ferretti"
},
"contributors": [
"pazqo",
"mfirry",
"vabite",
"yowzadave"
],
"license": "Apache-2.0",
"homepage": "https://github.com/andreaferretti/paths-js",
"keywords": [
"svg",
"path",
"chart"
],
"repository": {
"type": "git",
"url": "https://github.com/andreaferretti/paths-js.git"
},
"dependencies": {},
"scripts": {
"clean": "rm -r dist/*",
"build": "npm run build-es6 && npm run build-amd && npm run build-node && npm run build-global",
"build-es6": "mkdir -p dist/es6 && cp src/* dist/es6",
"build-amd": "babel src --modules amd --out-dir dist/amd",
"build-node": "babel src --out-dir dist/node && cp README.md dist/node && cp package.json dist/node",
"build-global": "mkdir -p dist/global && browserify dist/node/all.js -d -p [minifyify --map dist/global/paths.js.map --output dist/global/paths.js.map] -o dist/global/paths.js",
"watch": "babel src --watch --out-dir dist/node",
"test": "mocha --reporter nyan --compilers js:babel/register --recursive test",
"test:watch": "mocha --reporter min --compilers js:babel/register --recursive -w test"
},
"devDependencies": {
"babel": "^5.8.34",
"browserify": "^12.0.1",
"expect.js": "^0.3.1",
"minifyify": "^7.1.0",
"mocha": "^2.3.0"
},
"engines": {
"node": ">=0.11.0"
},
"main": "./all.js"
}