-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
77 lines (77 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
70
71
72
73
74
75
76
77
{
"name": "vh-check",
"version": "2.0.5",
"description": "vh unit buggyfill",
"main": "dist/vh-check.js",
"types": "dist/vh-check.d.ts",
"scripts": {
"start": "npm run build:demo && http-server ./dist-demo -c-1",
"test": "nyc ava",
"format-code": "prettier src/index.js --write src/index.js",
"toc": "doctoc *.md --github --notitle",
"build": "del dist && rollup --config",
"build:demo": "npm run build && del dist-demo && gulp demo",
"build:github": "npm run build:demo -- --gh-release",
"prepublishOnly": "npm run toc && npm run build",
"release": "np --no-cleanup --no-yarn",
"release:github": "del dist-demo && npm run build:github && gh-pages -d dist-demo",
"size": "gulp size"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hiswe/vh-check.git"
},
"keywords": [
"ios",
"mobile",
"css",
"vh",
"vertical-height",
"buggyfill"
],
"author": "hiswe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hiswe/vh-check/issues"
},
"homepage": "https://github.com/Hiswe/vh-check#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-beta.8",
"browser-env": "^3.2.5",
"browserify": "^16.2.3",
"del-cli": "^1.1.0",
"doctoc": "^1.3.1",
"gh-pages": "^2.0.0",
"gulp": "^4.0.0",
"gulp-pug": "^4.0.1",
"gulp-size": "^3.0.0",
"http-server": "^0.11.1",
"js-beautify": "^1.8.6",
"lodash.merge": "^4.6.1",
"lodash.omit": "^4.5.0",
"nyc": "^13.0.1",
"parcel-bundler": "^1.10.1",
"prettier": "1.14.3",
"rollup": "^0.66.2",
"rollup-plugin-typescript2": "^0.17.1",
"rollup-plugin-uglify": "^6.0.0",
"sinon": "^6.3.4",
"through2": "^2.0.3",
"ts-node": "^7.0.1",
"typescript": "^3.1.2",
"vinyl-source-stream": "^2.0.0",
"yargs": "^12.0.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"test",
"**/*.js"
]
}
}