-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
54
55
56
57
{
"name": "jsonmltoreact",
"version": "0.1.0",
"description": "JsonML to React component converter",
"main": "./lib/index.js",
"scripts": {
"build": "./node_modules/.bin/babel ./src --out-dir ./lib",
"coverage": "nyc --reporter=lcov --require babel-core/register mocha ${TEST_FILES:-test/src/index.spec.js}",
"lint": "eslint .",
"prebuild": "rm -rf lib",
"precommit": "npm run lint",
"prepublish": "npm run build",
"prepush": "npm test",
"pretest": "npm run lint",
"test": "NODE_ENV=test nyc mocha"
},
"author": "@diffcunha",
"repository": {
"type": "git",
"url": "git://github.com/diffcunha/jsonmltoreact.git"
},
"license": "MIT",
"keywords": [
"JsonML",
"React"
],
"dependencies": {
"jsonml.js": "^0.1.0",
"lodash.camelcase": "^4.1.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-rewire": "1.1.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015": "6.24.1",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"husky": "0.13.3",
"mocha": "3.3.0",
"must": "0.13.4",
"nyc": "10.3.2",
"sinon": "2.2.0"
},
"nyc": {
"require": [
"babel-core/register"
]
}
}