-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "to-redux-type",
"version": "1.3.1",
"description": "Converts strings, objects, and arrays to redux action types (screaming snake case) (myValue -> MY_VALUE)",
"main": "dist/main.js",
"author": "Braden R. Napier",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn build",
"build": "rimraf dist && cross-env NODE_ENV=production babel --out-dir dist src",
"try": "babel-node try-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Dash-OS/to-redux-type.git"
},
"bugs": {
"url": "https://github.com/Dash-OS/to-redux-type/issues"
},
"keywords": [
"react",
"redux",
"camelCase",
"screaming snake case",
"redux-saga",
"action types",
"reducers"
],
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"babel-eslint": "^10.0.1",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"rimraf": "^2.6.2"
}
}