-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
{
"author": "planttheidea <tony.quetano@planttheidea.com>",
"browser": "dist/selectorator.js",
"bugs": {
"url": "https://github.com/planttheidea/selectorator/issues"
},
"dependencies": {
"fast-equals": "^1.2.1",
"identitate": "^1.0.0",
"reselect": "^4.0.0",
"unchanged": "^2.0.1"
},
"description": "Simplified generator of reselect selectors",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"cli-table2": "^0.2.0",
"cross-env": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"in-publish": "^2.0.0",
"jest": "^24.8.0",
"moize": "^5.4.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.16.7",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"homepage": "https://github.com/planttheidea/selectorator#readme",
"keywords": [
"reselect",
"selector"
],
"license": "MIT",
"main": "dist/selectorator.cjs.js",
"module": "dist/selectorator.esm.js",
"name": "selectorator",
"repository": {
"type": "git",
"url": "git+https://github.com/planttheidea/selectorator.git"
},
"scripts": {
"benchmark": "rimraf lib && npm run transpile:lib && node ./benchmark/index.js",
"build": "cross-env NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --colors --config=webpack/webpack.config.js",
"lint": "cross-env NODE_ENV=test tslint 'src/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prepublish": "if in-publish; then npm run prepublish:compile; fi",
"prepublish:compile": "npm run lint && npm run test:coverage && npm run clean && npm run build",
"start": "npm run dev",
"test": "cross-env NODE_PATH=. jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch"
},
"sideEffects": false,
"types": "index.d.ts",
"version": "4.0.3"
}