-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.96 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "reselect-scope",
"version": "0.1.3",
"description": "Reusing sharing Selectors for complex selectors",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src",
"dist",
"es"
],
"scripts": {
"compile:commonjs": "better-npm-run compile:commonjs",
"compile:umdmin": "uglifyjs dist/reselect.js -mt -o dist/reselect.min.js",
"compile:umd": "better-npm-run compile:umd",
"compile:es": "babel -d es/ src/",
"compile": "npm run compile:commonjs && npm run compile:umd && npm run compile:umdmin && npm run compile:es",
"lint": "eslint src test",
"prepare": "npm run compile",
"test": "better-npm-run test",
"test:cov": "better-npm-run test:cov"
},
"betterScripts": {
"test": {
"command": "mocha --require @babel/register --ui tdd --recursive",
"env": {
"NODE_ENV": "test"
}
},
"test:cov": {
"command": "nyc --reporter=lcov --reporter=text mocha --require @babel/register --ui tdd",
"env": {
"NODE_ENV": "test",
"COVERAGE": "true"
}
},
"test:typescript": {
"command": "typings-tester --dir typescript_test"
},
"compile:commonjs": {
"command": "babel -d lib/ src/ && ncp ./src/index.d.ts ./lib/index.d.ts",
"env": {
"NODE_ENV": "commonjs"
}
},
"compile:umd": {
"command": "mkdirp dist/ && babel -o dist/reselect.js src/",
"env": {
"NODE_ENV": "umd"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/SenyaMur/reselect-scope.git"
},
"keywords": [
"react",
"redux",
"reselect"
],
"author": "Semen Muradkhanov <senyamur@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SenyaMur/reselect-scope/issues"
},
"homepage": "https://github.com/SenyaMur/reselect-scope#readme",
"peerDependencies": {
"reselect": ">1.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/cli": "^7.4.4",
"babel-eslint": "10.0.1",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.4.4",
"@babel/plugin-transform-function-name": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.4.4",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/register": "^7.4.4",
"better-npm-run": "0.0.8",
"chai": "^3.0.0",
"coveralls": "^3.0.4",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"lodash.memoize": "^4.1.2",
"mkdirp": "^0.5.1",
"mocha": "^6.1.4",
"ncp": "^2.0.0",
"nyc": "^14.1.1",
"reselect": ">1.0.0",
"typescript": "^2.1.4",
"typings-tester": "^0.3.2",
"uglify-js": "^3.6.0"
}
}