forked from emilwidlund/wire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 992 Bytes
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
{
"name": "wire",
"version": "0.0.1",
"description": "Monorepo for all Wire artifacts",
"author": "Emil Widlund",
"main": "index.js",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"test": "lerna exec npm run test",
"build": "lerna exec npm run build",
"dev": "lerna exec --parallel npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilwidlund/wire.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/emilwidlund/wire/issues"
},
"homepage": "https://github.com/emilwidlund/wire#readme",
"dependencies": {
"lerna": "^3.14.1"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"husky": "^3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}