-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "layercake-js",
"version": "1.1.12",
"description": "A deliciously automated z-index manager",
"main": "dist/layercake.js",
"module": "dist/layercake.es.js",
"unpkg": "dist/layercake.min.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup --config rollup.config.js && npm run test:es-check",
"release": "node scripts/release.js && npm publish",
"version": "auto-changelog -p --template keepachangelog && npm run build && sleep 3 && git add .",
"lint": "eslint src/**/*.js scripts/**/*.js --fix",
"test": "node scripts/run-tests.js",
"test:es-check": "es-check es5 dist/layercake.min.js dist/layercake.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcarlucci/layercake.git"
},
"keywords": [
"z-index",
"manager",
"automatic",
"overlay",
"layer"
],
"author": "Matt Carlucci <[email protected]> (mcarlucci.com)",
"license": "ISC",
"homepage": "https://github.com/mcarlucci/layercake#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.0.0-beta.40",
"auto-changelog": "^1.8.1",
"babel-minify": "^0.5.0",
"dotenv": "^6.1.0",
"es-check": "^4.0.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"gh-release": "^3.4.0",
"husky": "^1.1.3",
"node-qunit-phantomjs": "^2.0.1",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-uglify": "^5.0.0"
},
"dependencies": {}
}