-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.01 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
{
"name": "@spritejs/next",
"version": "0.0.1",
"description": "The next generation of spritejs.",
"main": "dist/spritejs.js",
"module": "lib/index.js",
"scripts": {
"test": "nyc ava --serial && rm -rf ./coverage && mkdir ./coverage && nyc report --reporter=text-lcov > ./coverage/lcov.info",
"start": "webpack-dev-server --env.server=examples --watch-poll",
"compile": "rm -rf lib/* && babel src -d lib",
"build": "webpack --env.mode=production",
"demo:dev": "demosify --serve",
"demo:prod": "demosify --prod",
"prepublishOnly": "npm run compile && npm run build && npm run demo:prod"
},
"keywords": [],
"author": "akira-cn",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.6.2",
"@demosify/core": "^0.5.5",
"ava": "^2.4.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-gl-matrix": "^0.6.0",
"canvas": "^2.6.0",
"colors": "^1.4.0",
"coveralls": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-sprite": "^1.0.6",
"eslint-plugin-html": "^5.0.5",
"hamming-distance": "^1.0.0",
"imghash": "0.0.3",
"nyc": "^14.1.1",
"pixelmatch": "^5.1.0",
"raw-loader": "^3.1.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@mesh.js/core": "^0.5.4",
"color-rgba": "^2.1.1",
"css-select": "^2.0.2",
"gl-matrix": "^3.1.0",
"pasition": "^1.0.2",
"sprite-animator": "^1.11.4"
},
"ava": {
"require": [
"@babel/register"
],
"sources": [
"./src/**/*.js"
],
"files": [
"./test/case/**/*.js"
],
"babel": {
"testOptions": {
"babelrc": true
}
}
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": []
}
}