-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "redux-selector-action",
"version": "1.0.1",
"description": "Selector Actions for Redux.",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"scripts": {
"compile": "npm run compile:cjs && npm run compile:umd && npm run compile:umdmin && npm run compile:es",
"compile:cjs": "better-npm-run compile:cjs",
"compile:es": "babel -d es/ src/",
"compile:umd": "better-npm-run compile:umd",
"compile:umdmin": "uglifyjs dist/redux-selector-action.js -m -o dist/redux-selector-action.min.js",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"prepublish": "npm run compile",
"test": "better-npm-run test",
"test:cov": "better-npm-run test:cov"
},
"betterScripts": {
"compile:cjs": {
"command": "babel src/ --out-dir lib/",
"env": {
"NODE_ENV": "commonjs"
}
},
"compile:umd": {
"command": "mkdirp dist/ && babel -o dist/redux-selector-action.js src/",
"env": {
"NODE_ENV": "umd"
}
},
"test": {
"command": "jest -u test/",
"env": {
"NODE_ENV": "test"
}
},
"test:cov": {
"command": "jest test/ --coverage",
"env": {
"NODE_ENV": "test"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/myheritage/redux-selector-action.git"
},
"keywords": [
"react",
"redux",
"reselect",
"action",
"selector"
],
"author": "MyHeritage",
"contributors": [
{
"name": "Peri Levy",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/myheritage/redux-selector-action/issues"
},
"homepage": "https://github.com/myheritage/redux-selector-action#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"better-npm-run": "^0.1.1",
"eslint": "^7.5.0",
"eslint-plugin-jest": "^23.18.2",
"jest": "^26.1.0",
"uglify-js": "^3.10.0"
}
}