-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "@geut/permanent-seeder-monorepo",
"description": "Permanent Seeder monorepo",
"homepage": "https://github.com/geut/permanent-seeder#readme",
"bugs": {
"url": "https://github.com/geut/permanent-seeder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/permanent-seeder.git"
},
"license": "MIT",
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"scripts": {
"build": "lerna run build",
"bootstrap": "lerna clean && lerna bootstrap",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- -- --fix",
"test": "lerna run test",
"posttest": "npm run lint",
"lerna": "lerna",
"release": "lerna version --no-git-tag-version && git add . && git commit -m \"Update: version bump\" && npm run release:chan",
"release:chan": "chan release --allow-yanked $(node -p -e \"require('./lerna.json').version\") && git add CHANGELOG.md && git commit -m \"Update: changelog\" && git push origin HEAD",
"publish:ci": "lerna publish from-package --no-verify-access --yes",
"ghrelease:ci": "chan gh-release $(node -p -e \"require('./lerna.json').version\")"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "xd-ns"
},
"chan": {
"git-url": "https://github.com/geut/permanent-seeder"
},
"devDependencies": {
"@geut/chan": "^2.2.1",
"@geut/xd": "^1.6.0",
"husky": "^3.1.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.9",
"standard": "^14.2.0"
},
"standard": {
"env": [
"jest",
"node"
]
}
}