forked from immutable-js/immutable-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.77 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@nkzw/immutable-map",
"version": "1.2.2",
"description": "Immutable Map",
"private": true,
"license": "MIT",
"homepage": "https://immutable-js.com",
"repository": {
"type": "git",
"url": "git://github.com/cpojer/immutable-js.git"
},
"main": "immutable.js",
"module": "./immutable.js",
"sideEffects": false,
"types": "./immutable.d.ts",
"keywords": [
"immutable",
"persistent",
"lazy",
"data",
"datastructure",
"functional",
"collection",
"stateless",
"sequence",
"iteration"
],
"publishConfig": {
"directory": "publish"
},
"publishKeys": [
"author",
"bugs",
"description",
"files",
"homepage",
"keywords",
"license",
"main",
"module",
"name",
"repository",
"sideEffects",
"types",
"version"
],
"engines": {
"npm": ">=7.0.0"
},
"scripts": {
"test": "run-s format lint type-check build unit-test",
"format": "npm run lint:format -- --write",
"lint": "run-s lint:*",
"lint:format": "prettier --check \"{__tests__,src,type-definitions,website/src,perf,resources}/**/*{.js,.ts,.tsx,.flow,.css}\"",
"lint:js": "eslint \"{__tests__,src,website/src}/**/*.js\"",
"lint:ts": "tslint --project type-definitions/tsconfig.json \"{__tests__,src,type-definitions,website/src}/**/*.{ts,tsx}\"",
"type-check": "run-s type-check:*",
"type-check:ts": "tsc --project type-definitions/tsconfig.json && tsc --project __tests__/tsconfig.json && dtslint type-definitions/ts-tests",
"type-check:flow": "flow check type-definitions/flow-tests --include-warnings",
"build": "run-s build:*",
"build-just-map": "npm run build && rm -rf ./publish && mkdir -p ./publish && cp dist/immutable.es.js publish/ImmutableMap.js && cp dist/immutable.d.ts publish/ImmutableMap.d.ts && cp package-publish.json publish/package.json && cp README.md publish/",
"build:clean": "rimraf dist",
"build:dist": "rollup -c ./resources/rollup-config.mjs",
"build:esm": "rollup -c ./resources/rollup-config-es.mjs",
"build:copy": "cpy ./type-definitions/immutable.* dist",
"build:prepare": "./resources/prepare-dist.sh",
"build:stats": "node ./resources/dist-stats.js",
"unit-test": "jest",
"website:build": "cd website && next build && next-sitemap && next export",
"website:dev": "cd website && next dev",
"check-git-clean": "./resources/check-git-clean.sh",
"benchmark": "node ./resources/benchmark.js"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": true,
"arrowParens": "avoid"
},
"devDependencies": {
"@types/jest": "27.0.1",
"@types/react": "17.0.11",
"benchmark": "2.1.4",
"colors": "1.4.0",
"cpy-cli": "3.1.1",
"dtslint": "^4.2.1",
"eslint": "7.29.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-next": "11.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"flow-bin": "0.160.0",
"jasmine-check": "1.0.0-rc.0",
"jest": "27.2.0",
"make-synchronous": "0.1.1",
"marked": "2.1.2",
"microtime": "3.0.0",
"next": "11.0.1",
"next-sitemap": "1.6.124",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "2.7.1",
"rollup": "3.29.3",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-strip-banner": "3.0.0",
"transducers-js": "0.4.174",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "^5.2.2",
"uglify-js": "3.17.4",
"uglify-save-license": "0.4.1"
}
}