-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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": "idle-preload",
"version": "1.0.13",
"license": "MIT",
"description": "preload something when the page is idle",
"author": "somewind <[email protected]> (https://github.com/somewind)",
"module": "esm/index.js",
"main": "lib/index.js",
"files": [
"esm/index.d.ts",
"esm/index.js",
"lib/index.d.ts",
"lib/index.js"
],
"scripts": {
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build:esm": "babel src --out-dir esm --delete-dir-on-start --verbose --copy-files",
"build:lib": "cross-env BABEL_ENV=cjs babel src --out-dir lib --delete-dir-on-start --verbose --copy-files",
"build": "npm run build:esm&&npm run build:lib",
"test": "jest",
"prepublishOnly": "yarn version",
"preversion": "npm run build && npm run test && npm run changelog && git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"commitizen": "^3.0.2",
"conventional-changelog-cli": "^2.0.12",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"yarn": "^1.22.4"
},
"peerDependencies": {},
"keywords": [
"idle",
"preload",
"idle-preload"
],
"bugs": "https://github.com/somewind/idle-preload/issues",
"homepage": "https://github.com/somewind/idle-preload",
"repository": "https://github.com/somewind/idle-preload.git",
"engines": {
"node": ">=6.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"dependencies": {
"dom-helpers": "^3.4.0"
}
}