-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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": "zooming",
"version": "2.1.1",
"description": "Image zoom that makes sense.",
"main": "build/zooming.js",
"module": "build/zooming.module.js",
"jsnext:main": "build/zooming.module.js",
"repository": {
"type": "git",
"url": "[email protected]:kingdido999/zooming.git"
},
"keywords": [
"zoom",
"image",
"grab",
"javascript"
],
"scripts": {
"start": "rollup -c -w -m inline",
"build": "rollup -c && rollup -c rollup.config.min.js",
"test": "cypress run --browser chrome",
"test:open": "cypress open",
"docs": "docsify serve ./docs"
},
"author": "Desmond Ding <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kingdido999/zooming/issues"
},
"homepage": "https://kingdido999.github.io/zooming",
"devDependencies": {
"babel-core": "6.26.3",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-es2015-rollup": "3.0.0",
"chai": "4.1.2",
"cypress": "4.3.0",
"docsify-cli": "4.4.0",
"husky": "4.2.3",
"lint-staged": "10.2.2",
"mocha": "7.1.1",
"prettier-standard": "16.2.1",
"rollup": "1.32.1",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-eslint": "4.0.0",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-uglify": "6.0.4"
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}