-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "glue42core",
"version": "0.0.0",
"description": "Web interoperability framework",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "npm run test:scripts && lerna run test",
"release": "gulp release",
"test:scripts": "mocha ./scripts/test/**/*spec.js",
"lint:fix": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix"
},
"devDependencies": {
"@lerna/changed": "^3.20.0",
"@lerna/run": "^3.20.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.0",
"lint-staged": "^10.0.8",
"mocha": "^7.1.0",
"mockery": "^2.1.0",
"simple-git": "^1.131.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"./node_modules/.bin/eslint --ignore-path .gitignore ."
]
}
}