-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@spritejs/shapes",
"version": "1.1.7",
"description": "",
"main": "dist/sprite-extend-shapes.js",
"module": "dist/sprite-extend-shapes.esm.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "npm run build:es6 && npm run build:prod && npm run build:nobrowser",
"build:prod": "babel src -d lib && webpack --env.production",
"build:es6": "babel src -d lib && webpack --env.esnext",
"build:nobrowser": "babel src -d lib && webpack --env.nobrowser",
"standalone": "babel src -d lib && webpack --env.standalone",
"start": "webpack-dev-server --watch-poll",
"prepublishOnly": "npm run build",
"test": "nyc ava --serial && rimraf ./coverage && mkdir coverage && nyc report --reporter=html > ./coverage/lcov.info",
"lint": "eslint ./ --fix"
},
"author": "akira-cn",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@purtuga/esm-webpack-plugin": "^1.1.1",
"@babel/register": "^7.0.0",
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"canvas": "^2.0.0-alpha.16",
"canvas-5-polyfill": "^0.1.5",
"colors": "^1.3.1",
"coveralls": "^3.0.2",
"css-loader": "^2.0.0",
"eslint": "^5.0.1",
"eslint-config-sprite": "^1.0.4",
"eslint-plugin-html": "^4.0.5",
"hamming-distance": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"imghash": "^0.0.3",
"nyc": "^12.0.2",
"pixelmatch": "^4.0.2",
"rimraf": "^2.6.2",
"spritejs": "^2.29.2",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.5"
},
"ava": {
"files": [
"**/test/*.test.js"
],
"require": [
"@babel/register"
],
"babel": {
"testOptions": {
"babelrc": true
}
}
},
"nyc": {
"exclude": [
"**/test/**/*.js"
]
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"sprite-draggable": "0.1.15",
"svg-path-to-canvas": "^1.11.3"
}
}