forked from microlinkhq/metascraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
63
64
65
66
67
68
69
{
"name": "metascraper-core",
"private": true,
"devDependencies": {
"gulp": "latest",
"concurrently": "latest",
"browser-sync": "latest",
"gulp-autoprefixer": "latest",
"gulp-concat": "latest",
"gulp-cssnano": "latest",
"gulp-strip-css-comments": "latest",
"gulp-uglify": "latest",
"eachdir": "latest",
"git-dirty": "latest",
"got": "latest",
"html-metadata": "latest",
"husky": "latest",
"json-future": "latest",
"lerna": "latest",
"lint-staged": "latest",
"conventional-changelog-cli": "latest",
"mkdirp": "latest",
"node-metainspector": "latest",
"open-graph-scraper": "latest",
"prettier-standard": "latest",
"rimraf": "latest",
"standard": "latest",
"finepack": "latest",
"standard-markdown": "latest",
"unfluff": "latest",
"npm-check-updates": "latest"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"dev": "concurrently \"gulp\" \"npm run server:dev\"",
"build": "gulp build",
"server:dev": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"",
"publish": "npm run upgrade && lerna publish --sort && npm run changelog:commit",
"postinstall": "lerna bootstrap",
"clean": "rm -rf node_modules && cd packages && eachdir rm -rf node_modules",
"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",
"lint": "standard-markdown && standard",
"precommit": "lint-staged",
"pretest": "npm run lint",
"pretty": "prettier-standard index.js {test,src}/**/*.js --single-quote",
"test": "lerna exec npm run test",
"upgrade": "lerna exec ncu -- --error-level 2"
},
"license": "MIT",
"lint-staged": {
"src/**/*.{js,css}": [
"prettier-standard",
"git add"
],
"package.json": [
"finepack",
"git add"
]
},
"standard": {
"env": [
"mocha"
]
},
"version": ""
}