forked from dogescript/dogescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 897 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": "dogescript",
"version": "2.4.0-pre",
"description": "wow so syntax very doge much future",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/remixz/dogescript.git"
},
"keywords": [
"wow"
],
"author": "Zach Bruggeman <[email protected]>",
"license": "MIT",
"dependencies": {
"js-beautify": "~1.5.1",
"optimist": "~0.6.0",
"xhr": "^1.8.0"
},
"bin": "./bin/dogescript.js",
"scripts": {
"clean": "node ./test/clean.js",
"test": "node ./test/spec.test.js | tap-dot",
"build": "browserify index.js -s dogescript > dist/dogescript.js",
"min": "uglifyjs dist/dogescript.js > dist/dogescript.min.js",
"dist": "npm run build && npm run min"
},
"devDependencies": {
"browserify": "^4.1.9",
"glob": "^4.0.2",
"tap-dot": "~0.2.2",
"tape": "~2.13.2",
"uglify-js": "^2.4.13"
}
}