-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "pdfreactor-utils",
"version": "0.2.0",
"description": "Small utility belt for JavaScript within HTML documents rendered with PDFreactor",
"main": "lib/index.js",
"repository": "[email protected]:aixigo/pdfreactor-utils.git",
"author": "Alexander Wilden <[email protected]>",
"license": "MIT",
"scripts": {
"apidoc": "laxar-dox -d docs/api index.js",
"test": "npm run build && mocha && npm run lint",
"prepublish": "npm run build",
"build": "babel -d lib/ -s inline index.js",
"develop": "babel -d lib/ -s inline -w index.js",
"lint": "eslint index.js test"
},
"peerDependencies": {
"d3": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"d3": "^4.0.0",
"eslint": "^3.0.1",
"eslint-config-laxarjs": "^2.0.0",
"jsdom": "^11.0.0",
"laxar-dox": "^2.0.0-rc.0",
"mocha": "^3.3.0"
}
}