forked from immutable-js/immutable-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.74 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
122
123
124
125
126
127
128
129
{
"name": "immutable",
"version": "4.0.0",
"description": "Immutable Data Collections",
"license": "MIT",
"homepage": "https://immutable-js.com",
"author": {
"name": "Lee Byron",
"url": "https://github.com/leebyron"
},
"repository": {
"type": "git",
"url": "git://github.com/immutable-js/immutable-js.git"
},
"bugs": {
"url": "https://github.com/immutable-js/immutable-js/issues"
},
"main": "dist/immutable.js",
"module": "dist/immutable.es.js",
"sideEffects": false,
"types": "dist/immutable.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"immutable",
"persistent",
"lazy",
"data",
"datastructure",
"functional",
"collection",
"stateless",
"sequence",
"iteration"
],
"publishKeys": [
"name",
"version",
"description",
"license",
"homepage",
"author",
"repository",
"bugs",
"main",
"module",
"sideEffects",
"types",
"files",
"keywords"
],
"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:clean": "rimraf dist",
"build:dist": "rollup -c ./resources/rollup-config.js",
"build:esm": "rollup -c ./resources/rollup-config-es.js",
"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",
"publish": "echo 'ONLY PUBLISH VIA CI'; exit 1;"
},
"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.1.0",
"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": "2.52.3",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-json": "3.0.0",
"rollup-plugin-strip-banner": "2.0.0",
"transducers-js": "0.4.174",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.3.4",
"uglify-js": "3.11.1",
"uglify-save-license": "0.4.1"
}
}