-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "fsa-creator",
"description": "Flux Standard Action creation with validation",
"main": "lib/index.js",
"scripts": {
"test": "make test",
"prepublish": "make clean build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"flux",
"redux",
"fsa",
"actions"
],
"author": "Ricardo Stuven <[email protected]>",
"bugs": {
"url": "https://github.com/rstuven/fsa-creator/issues"
},
"homepage": "https://github.com/rstuven/fsa-creator",
"repository": {
"type": "git",
"url": "https://github.com/rstuven/fsa-creator.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.13.2",
"babel-eslint": "6.1.2",
"babel-preset-es2015": "6.13.2",
"babel-preset-stage-0": "6.5.0",
"chai": "3.5.0",
"cz-conventional-changelog": "1.2.0",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.13.0",
"lodash.isplainobject": "4.0.6",
"mocha": "3.0.2",
"semantic-release": "4.3.5"
},
"dependencies": {
"flux-standard-action": "0.6.1",
"is-my-json-valid": "2.13.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}