forked from redux-utilities/flux-standard-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
{
"name": "flux-standard-action",
"version": "1.0.0",
"description": "A human-friendly standard for Flux action objects",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "babel src --out-dir lib --copy-files",
"clean": "rimraf lib/",
"lint": "eslint src/ test/",
"prepublish": "npm test && npm run build",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/acdlite/flux-standard-action.git"
},
"keywords": [
"flux",
"redux",
"actions",
"fsa"
],
"author": "Andrew Clark <acdlite@me.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"eslint": "^3.10.2",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.issymbol": "^4.0.1"
},
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false,
"reporter": [
"text-summary",
"lcov"
],
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
}
}