-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.37 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.37 KB
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
{
"name": "codecutils",
"version": "0.1.1",
"description": "Some handy tools for decoding binary files in pure JS",
"entry": "src/main.js",
"main": "dist/codecutils.umd.js",
"cjs": "dist/codecutils.cjs.js",
"umd": "dist/codecutils.umd.js",
"repository": "jonathanlurie/codecutils",
"moduleName": "codecutils",
"moduleFormat": "umd",
"moduleBuildDir": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"min": "npm run build && printf \"// Build date: $(date '+%Y-%m%-dT%H:%M:%S')\n\n\" > dist/codecutils.min.js && cat header.txt >> dist/codecutils.min.js && google-closure-compiler-js dist/codecutils.js >> dist/codecutils.min.js",
"doc": "documentation src/CodecUtils.js -o ./doc/ -f html",
"all": "npm run build && npm run min && npm run doc"
},
"author": "Jonathan Lurie",
"license": "MIT",
"devDependencies": {
"documentation": "^3.0.4",
"google-closure-compiler-js": "^20170218.0.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0"
},
"dependencies": {
"traverse": "^0.6.6"
}
}