-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.65 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
{
"name": "@sadbox/structure-ops",
"version": "1.1.0",
"description": "Set of basic operations over plain js structures",
"main": "index.js",
"author": "Kirill Mesnyankin <[email protected]>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist",
"immutable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/strayiker/structure-ops.git"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "eslint src",
"size": "bundlesize",
"test": "jest",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"bundlesize": "^0.17.0",
"eslint": "^5.11.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^3.0.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"bundlesize": [
{
"path": "./dist/structure-ops.cjs.js",
"maxSize": "1.2kB"
},
{
"path": "./dist/structure-ops.immutable.cjs.js",
"maxSize": "1.2kB"
}
]
}