-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.36 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
{
"name": "lunicorn",
"version": "0.2.1",
"description": "lunicorn js consumer",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "npm-run-all clean build:babel build:browserify build:uglify",
"build:babel": "babel src --presets babel-preset-es2015 --out-dir lib --source-maps inline",
"build:browserify": "browserify lib/browser.js -d | exorcist dist/lunicorn-$npm_package_version.js.map > dist/lunicorn-$npm_package_version.js",
"build:uglify": "uglifyjs dist/lunicorn-$npm_package_version.js -c -m -r Lunicorn -o dist/lunicorn-$npm_package_version.min.js --source-map dist/lunicorn-$npm_package_version.min.js.map --in-source-map dist/lunicorn-$npm_package_version.js.map --source-map-include-sources -p relative",
"clean": "rm -rf lib/* dist/*",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run build:babel -- -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zivity/lunijs.git"
},
"author": "",
"bugs": {
"url": "https://github.com/zivity/lunijs/issues"
},
"homepage": "https://github.com/zivity/lunijs#readme",
"dependencies": {
"pym.js": "^0.4.5"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"browserify": "^13.0.0",
"exorcist": "^0.4.0",
"npm-run-all": "^1.6.0",
"uglify-js": "^2.6.2"
}
}