forked from filidorwiese/spriteling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "spriteling",
"version": "1.1.5",
"description": "Spritesheet Animation Engine",
"main": "dist/spriteling.min.js",
"module": "dist/spriteling.js",
"types": "./dist/spriteling.d.ts",
"scripts": {
"develop": "rollup -w -c",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/filidorwiese/spriteling.git"
},
"keywords": [
"sprite",
"sprites",
"spritesheet",
"animation",
"animator",
"motion"
],
"author": "Filidor Wiese",
"license": "ISC",
"bugs": {
"url": "https://github.com/filidorwiese/spriteling/issues"
},
"homepage": "https://github.com/filidorwiese/spriteling#readme",
"devDependencies": {
"@types/enzyme": "3.1.10",
"@types/jest": "22.2.3",
"enzyme": "3.10.0",
"jest": "24.8.0",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-typescript2": "0.14.0",
"rollup-plugin-uglify": "4.0.0",
"ts-jest": "24.0.2",
"typescript": "2.8.3"
},
"dependencies": {
"es6-promise": "4.2.4",
"image-loaded": "0.0.2",
"raf": "3.4.0",
"rollup": "1.14.4"
}
}