-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
{
"name": "ractionx",
"version": "1.0.6",
"description":
"A wrapper for acdlite/redux-actions that allows you to prefix types in actions",
"main": "lib/index.js",
"repository": "tugorez/redux-actions",
"author": "tugorez",
"license": "MIT",
"files": ["es", "lib", "dist"],
"scripts": {
"test": "jest",
"test:all": "npm run lint && npm run test:coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint --fix .",
"build":
"npm run test:all && rimraf lib es dist && npm run build:es && npm run build:common && npm run build:umd",
"build:es": "babel src --out-dir es --ignore __tests__/*",
"build:common": "babel src --out-dir lib --ignore __tests__/*",
"build:umd": "webpack",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-cli": "^6.23.0",
"redux-actions": "^2.0.2"
}
}