forked from microlinkhq/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.66 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
{
"name": "microlinkjs",
"description": "Convert your links into beautiful previews",
"version": "",
"devDependencies": {
"conventional-changelog-cli": "latest",
"eachdir": "latest",
"finepack": "latest",
"husky": "latest",
"lerna": "latest",
"npm-check-updates": "latest",
"lint-staged": "latest",
"prettier-standard": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"browser-sync": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"",
"build": "gulp build",
"build:packages": "lerna run build",
"changelog": "conventional-changelog --release-count=0 > CHANGELOG.md",
"changelog:commit": "npm run changelog && git add CHANGELOG.md && git commit -m 'Update Changelog' && git push origin master",
"clean": "cd packages && eachdir rm -rf node_modules && cd .. && rm -rf node_modules",
"dev": "concurrently 'gulp' 'npm run browser-sync'",
"lint": "standard-markdown README.md && standard src",
"postinstall": "lerna bootstrap",
"precommit": "lint-staged",
"pretest": "npm run lint",
"pretty": "prettier-standard src/**/*.{js,css} --single-quote",
"publish": "npm run upgrade && npm run build:packages && git add . && lerna publish --sort && npm run changelog:commit",
"test": "lerna exec npm run test",
"upgrade": "lerna exec ncu -- --error-level 2"
},
"private": true,
"license": "MIT",
"lint-staged": {
"linters": {
"*.js": [
"prettier-standard",
"git add"
],
"package.json": [
"finepack",
"git add"
]
}
}
}