package.json
3.74 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"_from": "immer@7.0.9",
"_id": "immer@7.0.9",
"_inBundle": false,
"_integrity": "sha512-Vs/gxoM4DqNAYR7pugIxi0Xc8XAun/uy7AQu4fLLqaTBHxjOP9pJ266Q9MWA/ly4z6rAFZbvViOtihxUZ7O28A==",
"_location": "/immer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "immer@7.0.9",
"name": "immer",
"escapedName": "immer",
"rawSpec": "7.0.9",
"saveSpec": null,
"fetchSpec": "7.0.9"
},
"_requiredBy": [
"/react-dev-utils"
],
"_resolved": "https://registry.npmjs.org/immer/-/immer-7.0.9.tgz",
"_shasum": "28e7552c21d39dd76feccd2b800b7bc86ee4a62e",
"_spec": "immer@7.0.9",
"_where": "C:\\Users\\kkwan_000\\Desktop\\git\\2017110269\\minsung\\node_modules\\react-dev-utils",
"author": {
"name": "Michel Weststrate"
},
"bugs": {
"url": "https://github.com/immerjs/immer/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Create your next immutable state by mutating the current one",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@types/jest": "^25.1.2",
"coveralls": "^3.0.0",
"cpx2": "^2.0.0",
"cross-env": "^5.1.3",
"deep-freeze": "^0.0.1",
"flow-bin": "^0.123.0",
"husky": "^1.2.0",
"immutable": "^3.8.2",
"import-size": "^1.0.2",
"jest": "^25.1.0",
"lodash": "^4.17.4",
"lodash.clonedeep": "^4.5.0",
"prettier": "1.19.1",
"pretty-quick": "^1.8.0",
"redux": "^4.0.5",
"rimraf": "^2.6.2",
"seamless-immutable": "^7.1.3",
"semantic-release": "^17.0.2",
"spec.ts": "^1.1.0",
"ts-jest": "^25.2.0",
"tsdx": "^0.12.3",
"typescript": "^3.9.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"files": [
"dist",
"compat",
"src"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/immer"
},
"homepage": "https://github.com/immerjs/immer#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jsdelivr": "dist/immer.umd.production.min.js",
"jsnext:main": "dist/immer.esm.js",
"keywords": [
"immutable",
"mutable",
"copy-on-write"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/immer.esm.js",
"name": "immer",
"react-native": "dist/immer.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/immerjs/immer.git"
},
"scripts": {
"build": "rimraf dist/ && tsdx build --name immer --format esm,cjs,umd && yarn build:flow",
"build:flow": "cpx 'src/types/index.js.flow' dist -v",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
"publish-docs": "cd website && GIT_USER=mweststrate USE_SSH=true yarn run publish-gh-pages",
"start": "cd website && yarn start",
"test": "jest && yarn test:build && yarn test:flow",
"test:build": "yarn build && NODE_ENV='production' yarn jest --config jest.config.build.js",
"test:flow": "yarn flow check __tests__/flow",
"test:perf": "cd __performance_tests__ && babel-node add-data.js && babel-node todo.js && babel-node incremental.js",
"test:size": "yarn build && yarn import-size --report . produce enableES5 enableMapSet enablePatches enableAllPlugins",
"test:sizequick": "tsdx build --name immer --format esm && yarn import-size . produce",
"watch": "jest --watch"
},
"sideEffects": false,
"source": "src/immer.ts",
"types": "./dist/immer.d.ts",
"typesVersions": {
">=3.7": {
"*": [
"./*"
]
},
">=3.1": {
"*": [
"compat/pre-3.7/*"
]
}
},
"umd:main": "dist/immer.umd.production.min.js",
"unpkg": "dist/immer.umd.production.min.js",
"version": "7.0.9"
}