forked from twilio/flex-plugin-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.7 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
{
"private": true,
"homepage": "https://github.com/twilio/flex-plugin-builder#readme",
"bugs": {
"url": "https://github.com/twilio/flex-plugin-builder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twilio/flex-plugin-builder.git"
},
"license": "MIT",
"contributors": [
"Dominik Kundel <[email protected]>",
"Kousha Talebian <[email protected]>"
],
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"build": "lerna run build",
"coverage": "codecov",
"docs": "./bin/docs-generator.js",
"postinstall": "npm run bootstrap",
"lint": "tslint --project tsconfig.lint.json",
"lint:fix": "tslint --project tsconfig.lint.json --fix",
"test": "jest --coverage --color",
"test:coverage": "jest --coverage --color --watchAll=false",
"test:watch": "jest --watchAll --color",
"publish:next": "bin/publish",
"publish:public": "bin/publish public"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@k88/pipe-compose": "^2.1.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^25.2.4",
"babel-register": "^6.26.0",
"codecov": "^3.6.5",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lerna": "3.20.2",
"ts-jest": "^25.3.0",
"tslint": "^6.1.0",
"tslint-react": "^4.2.0",
"typescript": "^3.8.3"
}
}