-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "spritz.js",
"description": "Modern and delightful sprites animation library for JavaScript!",
"homepage": "https://github.com/maoosi/spritz.js",
"main": "dist/spritz.js",
"jsnext:main": "dist/spritz.mjs",
"module": "dist/spritz.mjs",
"author": "maoosi <hello@sylvainsimao.fr>",
"version": "2.3.0",
"license": "MIT",
"repository": "https://github.com/maoosi/spritz.js.git",
"bugs": {
"url": "https://github.com/maoosi/spritz.js/issues"
},
"keywords": [
"sprite",
"sprites",
"spritesheet",
"animation",
"360"
],
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"testEnvironmentOptions": {
"resources": "usable"
}
},
"scripts": {
"prebuild": "eslint src test",
"build": "node rollup.js",
"pretest": "npm run build",
"test": "jest test/spritz.test.js",
"posttest": "rm -rf jest_*",
"prepublish": "npm test"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"canvas": "^2.6.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.2.0",
"raf": "^3.4.1",
"rollup": "^1.27.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "*",
"source-map-support": "^0.5.16",
"uglify-js-harmony": "^2.7.7"
},
"dependencies": {
"knot.js": "^1.1.5",
"rollup-plugin-terser": "^5.1.2",
"wait.js": "^3.0.0"
}
}