-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "standard src/** test/**",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:cov": "babel-node ./node_modules/.bin/isparta cover _mocha -- --recursive",
"prepublish": "npm run lint && npm test && npm run clean && npm run build"
},
"dependencies": {
"flux-standard-action": "^0.6.0",
"lodash.isplainobject": "^3.2.0"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"isparta": "^4.0.0",
"lodash.isplainobject": "^4.0.4",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"sinon": "^1.17.2",
"standard": "^7.1.2"
},
"standard": {
"parser": "babel-eslint"
},
"name": "redux-fsa-linter",
"description": " Redux middleware to lint for Flux Standard Actions",
"version": "2.0.0",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxmechanic/redux-fsa-linter.git"
},
"keywords": [
"redux",
"flux",
"flux-standard-action"
],
"author": "maxmechanic",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxmechanic/redux-fsa-linter/issues"
},
"homepage": "https://github.com/maxmechanic/redux-fsa-linter#readme"
}