-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.67 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
78
79
80
81
82
83
{
"name": "redux-midi",
"description": "Streamlined Web MIDI I/O for Redux apps",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"repo-setup": "./auto-deploy-docs/travis-gen-deploy-key.sh motiz88/js-starter-2016",
"build": "cross-env BABEL_ENV=production babel src -d dist",
"test": "mocha && semistandard",
"examples:bare-input": "webpack-dev-server --entry ./examples/bare-input --config webpack.config.js",
"example:bare-input": "npm run examples:bare-input",
"semantic-release": "semantic-release pre && npm run build && npm publish && semantic-release post",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && coveralls < ./coverage/lcov.info && shx rm -rf ./coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report html -- -R spec",
"doc:serve": "documentation serve src/index.js --watch -c documentation.yml",
"doc:build": "documentation build src/index.js -f html -o doc -c documentation.yml",
"doc:watch": "npm run doc:build -- --watch",
"doc": "npm run doc:build"
},
"repository": {
"type": "git",
"url": "https://github.com/motiz88/redux-midi.git"
},
"keywords": [
"redux",
"midi"
],
"author": "Moti Zilberman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/motiz88/redux-midi/issues"
},
"homepage": "https://github.com/motiz88/redux-midi#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.13.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-deep-match": "^1.0.2",
"chai-flux": "^1.0.2",
"chai-things": "^0.2.0",
"coveralls": "^2.11.9",
"cross-env": "^2.0.0",
"deep-freeze": "0.0.1",
"documentation": "^4.0.0-beta4",
"flux-standard-action": "^0.6.1",
"istanbul": "^1.0.0-alpha.2",
"karma": "^0.13.22",
"karma-sinon-chai": "^1.2.0",
"lodash.isplainobject": "^4.0.4",
"lodash.uniq": "^4.3.0",
"lolex": "^1.5.0",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.0.4",
"semantic-release": "^4.3.5",
"semistandard": "^9.0.0",
"shx": "^0.1.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"web-midi-test-api": "^0.2.3",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"deep-equal": "^1.0.1",
"lodash.sortby": "^4.5.0",
"redux-duck": "^1.0.1"
},
"semistandard": {
"ignore": [
"submodules/"
],
"parser": "babel-eslint"
}
}