-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-key-value",
"version": "2.0.0",
"description": "Key value visualizer/editor written in React",
"main": "dist/index.js",
"scripts": {
"start": "PORT=4567 http-server example & npm run watch:example & wait",
"watch:example": "watchify -d -v -t babelify example/main.js -o example/bundle.js",
"build": "mkdir -p dist && babel src -d dist",
"coverage": "npm run test:coverage &&cat ./coverage/lcov.info | coveralls",
"test": "npm run js:lint && LOGGER_SILENT=1 npm run testrunner -s",
"test:coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text npm run testrunner",
"test:watch": "REPORTER=min npm run testrunner -- -w & wait",
"testrunner": "mocha --compilers js:babel-register -r should -r src/utils/setup-jsdom -R ${REPORTER-dot} 'src/*.spec.js'",
"js:lint": "eslint -f ${ESLINT_FORMAT-stylish} src",
"js:lint:watch": "esw src -w",
"prepublish": "npm run build"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/purposeindustries/react-key-value.git"
},
"keywords": [
"react",
"key",
"value",
"visualizer",
"generate",
"json"
],
"author": "ruffle1986",
"contributors": [
{
"name": "Csanad Beres",
"email": "[email protected]",
"url": "https://github.com/Xronophobe"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/purposeindustries/react-key-value/issues"
},
"homepage": "https://github.com/purposeindustries/react-key-value#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "6.0.4",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"coveralls": "^2.11.15",
"enzyme": "^2.6.0",
"eslint": "2.11.1",
"eslint-config-pi": "^8.0.0",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-react": "5.1.1",
"eslint-watch": "~2.1.11",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"jsdom": "^9.8.3",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^10.0.0",
"prop-types": "^15.6.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"should": "^11.1.1",
"watchify": "^3.7.0"
}
}