forked from stalniy/casl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "casl",
"private": true,
"version": "0.0.0-development",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"pretest": "npm run lint",
"test": "lerna run test",
"lint": "lerna run lint",
"coverage.submit": "codecov",
"prerelease": "npm run lint",
"release": "lerna run release"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^24.1.0",
"chai": "^4.1.0",
"chai-spies": "^1.0.0",
"codecov": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.9.0",
"husky": "^3.0.0",
"jest": "^24.1.0",
"lerna": "^3.4.3",
"lint-staged": "^9.0.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-uglify": "^6.0.2",
"semantic-release": "15.9.17",
"semantic-release-monorepo": "^6.1.1",
"tslib": "^1.9.3",
"typescript": "3.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/stalniy/casl.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
}
}