-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 KB
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
{
"name": "core",
"version": "1.0.0",
"description": "The core monorepo that houses element supporting logic. 🖼👓",
"devDependencies": {
"@types/jest": "^24.0.25",
"cz-conventional-changelog": "^3.0.2",
"lerna": "^3.20.1"
},
"scripts": {
"commit": "git-cz",
"lint": "lerna exec -- eslint **/*.ts",
"prebuild": "lerna run prebuild",
"build": "npm run prebuild && lerna exec -- tsc -p .",
"test": "lerna exec -- jest --coverage",
"release": "npm run lint && npm run build && npm run test && lerna publish --conventional-commits from-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/overlayed-app/core.git"
},
"keywords": [
"overlayed"
],
"author": "Ben Greenier",
"license": "MIT",
"bugs": {
"url": "https://github.com/overlayed-app/core/issues"
},
"homepage": "https://github.com/overlayed-app/core#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}