-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "wormalize",
"version": "0.0.4",
"description": "Normalizes nested JSON according to a schema",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"ava": "NODE_ENV=test ava",
"lint": "eslint src",
"test": "npm run lint && npm run ava",
"build": "babel src --presets es2015-without-symbol --out-dir lib",
"build-test": "npm run build && npm test",
"doc": "./bin/generate_doc.sh",
"prepublish": "rm -rf lib && npm run build-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shimohq/wormalize.git"
},
"keywords": [
"normalize"
],
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015-without-symbol": "^6.14.5",
"babel-register": "^6.16.0",
"eslint": "^3.6.1",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^6.3.0"
},
"author": "Zihua Li <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shimohq/wormalize/issues"
},
"homepage": "https://github.com/shimohq/wormalize#readme",
"dependencies": {
"deep-assign": "^2.0.0"
}
}