-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "zaphod",
"version": "0.2.1",
"description": "Clojure's API for JavaScript's Objects",
"main": "zaphod.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "babel-tape-runner src/index.spec.js | tap-spec",
"docs": "node tools/make-docs.js",
"watch-docs": "watch -p 'docs/**' -c 'npm run docs'",
"prepublish": "webpack && npm run minify",
"postpublish": "rm zaphod.*js compat.*js",
"cover": "BABEL_ENV=test nyc node src/index.spec.js | tap-spec",
"report": "nyc report --reporter=text-lcov | coveralls",
"minify": "npm run minify:zaphod && npm run minify:compat",
"minify:zaphod": "uglifyjs zaphod.js -o zaphod.min.js",
"minify:compat": "uglifyjs compat.js -o compat.min.js"
},
"keywords": [
"immutable",
"clojure",
"function",
"bind"
],
"author": "Dan Prince",
"license": "MIT",
"devDependencies": {
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"babylon": "^6.9.1",
"coveralls": "^2.11.12",
"gray-matter": "^2.0.2",
"handlebars": "^4.0.5",
"metalsmith": "^2.2.0",
"metalsmith-define": "^2.0.1",
"metalsmith-layouts": "^1.6.5",
"metalsmith-markdown": "^0.2.1",
"metalsmith-metallic": "^1.0.0",
"nyc": "^8.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"uglify-js": "^2.7.3",
"watch-cli": "^0.2.1",
"webpack": "^1.13.2"
},
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"exclude": [
"**/*.spec.js"
]
}
}