-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.56 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.56 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "darkli",
"version": "0.7.2",
"description": "Darkli: small and clean lightbox script",
"main": "dist/darkli.common.js",
"module": "dist/darkli.esm.js",
"unpkg": "dist/darkli.js",
"jsdelivr": "dist/darkli.js",
"author": "Rex Tsou <akccakccwww@gmail.com>",
"keywords": [
"lightbox",
"overlay"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akccakcctw/darkli.git"
},
"bugs": {
"url": "https://github.com/akccakcctw/darkli/issues"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.8.3",
"archy": "^1.0.0",
"core-js": "^3.6.4",
"regenerator-runtime": "^0.13.3",
"url-search-params-polyfill": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"browser-sync": "^2.26.7",
"chai": "^4.1.2",
"chromedriver": "^74.0.0",
"commitizen": "^3.1.2",
"cross-env": "^5.2.1",
"cross-spawn": "^6.0.5",
"cz-conventional-changelog": "^2.1.0",
"del": "^4.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.1.0",
"gulp-cli": "^2.0.1",
"gulp-eslint": "^4.0.2",
"gulp-exec": "^3.0.2",
"gulp-load-plugins": "^1.5.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"http-server": "^0.11.1",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"nightwatch": "^1.3.2",
"nightwatch-helpers": "^1.2.0",
"rollup": "^1.29.1",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^6.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.9.0",
"rollup-plugin-uglify": "^6.0.4",
"selenium-server": "^3.141.59",
"uglify-es": "^3.3.9",
"uglify-js": "^3.7.6"
},
"scripts": {
"test:unit": "npm run ava",
"test:e2e": "node test/e2e/runner.js",
"ava": "cross-env BABEL_ENV=test ava --verbose",
"ava:watch": "cross-env BABEL_ENV=test ava --verbose --watch",
"start": "npm run dev",
"dev": "cross-env BABEL_ENV=build NODE_ENV=development gulp",
"prod": "cross-env BABEL_ENV=build NODE_ENV=production gulp",
"dev:js": "cross-env NODE_ENV=development rollup -c rollup.config.dev.js",
"prod:js": "cross-env NODE_ENV=production rollup -c rollup.config.prod.js",
"tree": "npx ./bin/tree.js",
"commit": "git-cz",
"release": "bash bin/release.sh"
},
"ava": {
"files": [
"test/unit/**/*.test.js"
],
"require": [
"@babel/register"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node bin/verify-commit-msg.js",
"pre-push": "npm run test:unit"
}
},
"lint-staged": {
"linters": {
"src/js/**/*.js": [
"eslint --fix",
"git add"
]
},
"ignore": [
"**/{dist,demo}/**/*.js",
"*.min.*"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}