-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "@tinkoff/utils",
"version": "2.6.2",
"author": "Tinkoff team",
"scripts": {
"build": "tsc && babel ./ts_temp -d build",
"release": "release-it",
"release:dry": "release-it --dry-run",
"benchmark": "ts-node --project tsconfig.benchmark.json runBenchmark.ts",
"prebenchmark": "npm install --no-save ts-node lodash ramda lazy.js underscore",
"docs": "node ./generate/docs/index.js",
"test": "jest --coverage",
"test:ci": "npm run test -- --maxWorkers=50%",
"copy-release-files": "node tools/copy-release-files.js"
},
"description": "Fast, small and purely functional utility library",
"repository": "https://github.com/Tinkoff/utils.js",
"bugs": "https://github.com/Tinkoff/utils.js/issues",
"keywords": [
"tinkoff",
"utils",
"ramda",
"lodash",
"curry",
"performance"
],
"sideEffects": false,
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@release-it/conventional-changelog": "^7.0.0",
"@types/jest": "^24.0.18",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-transform-es2015-modules-simple-commonjs": "^0.3.0",
"benchmark": "^2.1.4",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"fs-extra": "^6.0.1",
"gh-pages": "^3.2.0",
"jest": "^24.9.0",
"jsdom": "^15.1.1",
"prettier": "^1.16.4",
"react": "^16.9.0",
"react-is": "^16.9.0",
"recursive-readdir-sync": "^1.0.6",
"release-it": "^16.1.0",
"ts-expect": "^1.1.0",
"ts-jest": "^24.1.0",
"typescript": "^4.1.6",
"walker": "^1.0.7"
},
"peerDependenciesMeta": {
"react-is": {
"optional": true
}
}
}