This repository has been archived by the owner on Aug 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "redux-trivial-actions",
"version": "1.2.1",
"description": "Objectified Flux Standard Action for Redux",
"keywords": [
"flux",
"redux",
"fsa",
"actions"
],
"author": {
"name": "Brainbean Apps",
"email": "[email protected]",
"url": "https://brainbeanapps.com/"
},
"bugs": {
"url": "https://github.com/brainbeanapps/redux-trivial-actions/issues"
},
"homepage": "https://github.com/brainbeanapps/redux-trivial-actions",
"repository": {
"type": "git",
"url": "https://github.com/brainbeanapps/redux-trivial-actions.git"
},
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "standard",
"test": "cross-env NODE_ENV=test nyc --reporter=none mocha",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=html --reporter=text",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"compile:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib/commonjs",
"compile": "npm run compile:commonjs",
"build": "npm run lint && npm run test && npm run compile",
"preversion": "npm run lint && npm run test",
"version": "npm run compile",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@types/redux-actions": "^2.3.0",
"redux-actions": "^2.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"cross-env": "^5.1.5",
"mocha": "^5.1.1",
"nyc": "^11.7.3",
"standard": "^11.0.1"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}