-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@trust/json-document",
"version": "0.1.4",
"description": "",
"main": "lib/index",
"files": [
"dist",
"src",
"lib"
],
"scripts": {
"babel": "babel src -d lib",
"build": "npm run clean && npm run babel",
"clean": "rm -rf dist/*",
"webpack": "webpack --progress --colors --optimize-minimize --optimize-occurrence-order --optimize-dedupe",
"dist": "npm run build && npm run webpack",
"prepublish": "npm run build && npm run webpack",
"test": "mocha",
"karma": "karma start",
"jsdoc": "jsdoc -c jsdoc.json -r"
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/json-document.git"
},
"author": "Anvil Research, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilresearch/json-document/issues"
},
"homepage": "https://github.com/anvilresearch/json-document",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"benchmark": "^2.1.0",
"chai": "^3.5.0",
"json-schema-test-suite": "0.0.10",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"webpack": "^1.13.1"
},
"dependencies": {},
"babel": {
"presets": [
"es2015"
]
}
}