-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "area-selection-js",
"version": "0.0.2",
"description": "Simple and easy area selection library for image/video cropping",
"homepage": "https://github.com/7anshuai/area-selection",
"repository": "7anshuai/area-selection",
"author": "Tan Shuai <7anshuai@gmail.com>",
"license": "MIT",
"keywords": [
"area-selection",
"image-crop",
"video-crop"
],
"main": "dist/area-selection.js",
"jsnext:main": "dist/area-selection.es.js",
"types": "types/index.d.ts",
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"coveralls": "^2.11.14",
"del": "^2.2.2",
"easystatic": "^0.1.12",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"sinon": "^7.1.1"
},
"scripts": {
"lint": "eslint src test tools",
"test": "mocha --require @babel/register",
"test:watch": "mocha --require @babel/register --reporter min --watch",
"test:cover": "nyc npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build",
"publish:docs": "easystatic deploy docs --repo 7anshuai/area-selection",
"start": "easystatic start docs"
}
}