-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.23 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
{
"name": "immutable-assign",
"version": "2.1.5",
"description": "Lightweight immutable helper that allows you to continue working with Plain JavaScript Objects",
"main": "deploy/iassign.js",
"types": "deploy/iassign.d.ts",
"scripts": {
"test": "node node_modules/istanbul/lib/cli.js cover node_modules/jasmine/bin/jasmine.js",
"test-karma": "karma start ./karma.conf.js",
"test-karma-win10": "node_modules/.bin/karma start --browsers Chrome,Fireforx,Edge,IE",
"test-karma-win7": "node_modules/.bin/karma start --browsers Chrome,Fireforx,IE",
"test-karma-mac": "node_modules/.bin/karma start --browsers Safari,Chrome",
"test-karma-mac-no-proxy": "NO_PROXY='true' npm run test-karma-mac",
"debug": "node --inspect --inspect-brk node_modules/jasmine/bin/jasmine.js",
"build": "tsc && rm -rf deploy && mkdir deploy && cp -v src/*.{js,d.ts} deploy/",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"benchmarks": "node debug/benchmarks"
},
"author": {
"name": "engineforce",
"url": "https://github.com/engineforce"
},
"repository": {
"type": "git",
"url": "https://github.com/engineforce/ImmutableAssign.git"
},
"homepage": "https://github.com/engineforce/ImmutableAssign",
"license": "MIT",
"keywords": [
"immutable",
"typescript",
"javascript",
"data",
"stateless"
],
"optionalDependencies": {
"deep-freeze-strict": "^1.1.1"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"braces": "^3.0.2",
"chalk": "^4.1.1",
"core-js": "^3.15.2",
"coveralls": "^3.1.1",
"deep-freeze": "^0.0.1",
"edge-launcher": "^1.2.2",
"expect": "^27.0.6",
"immer": "^9.0.3",
"immutable": "^4.0.0-rc.12",
"istanbul": "^0.4.5",
"jasmine": "^3.7.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^4.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"seamless-immutable": "^7.1.4",
"timm": "^1.7.1",
"typescript": "^4.3.5"
}
}