forked from immutable-js/immutable-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.87 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
130
131
{
"name": "immutable",
"version": "4.0.0-rc.12-alloy-6",
"description": "Immutable Data Collections",
"license": "MIT",
"homepage": "https://facebook.github.com/immutable-js",
"author": {
"name": "Lee Byron",
"url": "https://github.com/leebyron"
},
"repository": {
"type": "git",
"url": "git://github.com/facebook/immutable-js.git"
},
"bugs": {
"url": "https://github.com/facebook/immutable-js/issues"
},
"main": "dist/immutable.js",
"module": "dist/immutable.es.js",
"typings": "dist/immutable-nonambient.d.ts",
"typescript": {
"definition": "dist/immutable.d.ts"
},
"scripts": {
"build": "run-s build:*",
"build:dist": "run-s clean:dist bundle:dist bundle:es copy:dist stats:dist",
"build:pages": "gulp --gulpfile ./resources/gulpfile.js default",
"stats:dist": "node ./resources/dist-stats.js",
"clean:dist": "rimraf dist",
"bundle:dist": "rollup -c ./resources/rollup-config.js",
"bundle:es": "rollup -c ./resources/rollup-config-es.js",
"copy:dist": "node ./resources/copy-dist-typedefs.js",
"lint": "run-s lint:*",
"lint:ts": "tslint \"__tests__/**/*.ts\"",
"lint:js": "eslint \"{__tests__,src,pages/src,pages/lib}/**/*.js\"",
"format": "prettier --single-quote --trailing-comma=es5 --write \"{__tests__,src,pages/src,pages/lib,perf,resources}/**/*{\\.js,\\.ts}\"",
"testonly": "./resources/jest",
"test": "run-s format build lint testonly test:types:*",
"test:travis": "npm run test && ./resources/check-changes",
"test:types:ts": "tsc ./type-definitions/Immutable.d.ts --lib es2015 && dtslint type-definitions/ts-tests",
"test:types:flow": "flow check type-definitions/tests --include-warnings",
"perf": "node ./resources/bench.js",
"start": "gulp --gulpfile ./resources/gulpfile.js dev",
"deploy": "./resources/deploy-ghpages.sh",
"gitpublish": "./resources/gitpublish.sh"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "<rootDir>/resources/jestPreprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|js)$",
"unmockedModulePathPatterns": [
"./node_modules/react"
]
},
"devDependencies": {
"benchmark": "2.1.4",
"browser-sync": "^2.26.3",
"browserify": "16.2.2",
"colors": "1.2.5",
"del": "3.0.0",
"dtslint": "0.1.2",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.8.2",
"flow-bin": "0.85.0",
"gulp": "3.9.1",
"gulp-concat": "2.6.1",
"gulp-filter": "5.1.0",
"gulp-header": "2.0.5",
"gulp-less": "3.5.0",
"gulp-size": "3.0.0",
"gulp-sourcemaps": "2.6.4",
"gulp-uglify": "2.1.0",
"gulp-util": "3.0.8",
"jasmine-check": "0.1.5",
"jest": "23.6.0",
"marked": "0.3.19",
"microtime": "2.1.8",
"mkdirp": "0.5.1",
"npm-run-all": "4.1.5",
"prettier": "1.14.2",
"react": "^0.12.0",
"react-router": "^0.11.2",
"react-tools": "0.13.3",
"rimraf": "2.6.2",
"rollup": "0.59.1",
"rollup-plugin-buble": "0.19.2",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-json": "3.0.0",
"rollup-plugin-strip-banner": "0.2.0",
"run-sequence": "2.2.1",
"through2": "2.0.3",
"transducers-js": "^0.4.174",
"tslint": "5.7.0",
"typescript": "3.0.3",
"uglify-js": "2.8.11",
"uglify-save-license": "0.4.1",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"files": [
"dist",
"contrib",
"README.md",
"LICENSE"
],
"keywords": [
"immutable",
"persistent",
"lazy",
"data",
"datastructure",
"functional",
"collection",
"stateless",
"sequence",
"iteration"
],
"dependencies": {
"fast-deep-equal": "^3.1.1"
}
}