forked from joshwcomeau/redux-sounds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.73 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
{
"name": "redux-sounds",
"version": "1.1.0",
"description": "Sound effect middleware for Redux.",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"lint": "eslint src",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/redux-sounds.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/redux-sounds.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"test": "./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --compilers js:babel-core/register --reporter spec test/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/joshwcomeau/redux-sounds.git"
},
"keywords": [
"redux",
"middleware",
"redux-middleware",
"sound",
"howler",
"flux"
],
"author": "Joshua Comeau <[email protected]>",
"license": "MIT",
"dependencies": {
"howler": "^1.1.28"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^5.0.0-beta4",
"babel-istanbul": "^0.6.0",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.2.0",
"coveralls": "^2.11.8",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"mocha": "^2.2.5",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.11"
}
}