-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.47 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
{
"author": "[email protected]",
"browser": "dist/unchanged.js",
"browserslist": [
"defaults",
"Explorer >= 9",
"Safari >= 6",
"Opera >= 15",
"iOS >= 8",
"Android >= 4"
],
"bugs": {
"url": "https://github.com/planttheidea/unchanged/issues"
},
"dependencies": {
"curriable": "^1.3.0",
"pathington": "^1.1.7"
},
"description": "A tiny, fast, unopinionated handler for updating JS objects and arrays immutably",
"devDependencies": {
"@types/jest": "^24.0.20",
"@types/node": "^12.11.7",
"@types/ramda": "^0.26.33",
"@types/react": "^16.9.11",
"benchmark": "^2.1.4",
"cli-table": "^0.3.1",
"eslint": "^6.6.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"lodash": "^4.17.10",
"nyc": "^14.1.1",
"ramda": "^0.26.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rollup": "^1.25.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"keywords": [
"immutable",
"functional"
],
"license": "MIT",
"homepage": "https://github.com/planttheidea/unchanged#readme",
"main": "dist/unchanged.cjs.js",
"module": "dist/unchanged.esm.js",
"name": "unchanged",
"repository": {
"type": "git",
"url": "git+https://github.com/planttheidea/unchanged.git"
},
"scripts": {
"benchmark": "npm run dist && NODE_ENV=production node ./benchmarks/index.js",
"build": "NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"dev": "NODE_ENV=development webpack-dev-server --colors --progress --config=webpack/webpack.config.js",
"dist": "npm run clean && npm run build",
"lint": "NODE_ENV=test tslint 'src/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test:coverage && npm run dist",
"release": "release-it",
"release:beta": "release-it --config=.release-it.beta.json",
"start": "npm run dev",
"test": "NODE_PATH=. jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"types": "dist/index.d.ts",
"version": "2.2.1"
}