-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "LightCinematic",
"version": "1.0.1",
"description": "Small library for spritesheet canvas animations",
"main": "dist/index.js",
"typings": "dist/index",
"scripts": {
"postinstall": "npm run typings",
"prepublish": "npm run build",
"typings": "typings install",
"doc": "typedoc --out doc/typedoc/ src/",
"test": "tsc -p ./test && karma start karma.conf.js --single-run --browsers PhantomJS",
"build": "rm -rf dist && tsc -p ./"
},
"keywords": [
"animation",
"cinematic",
"spritesheet",
"image",
"sequence"
],
"author": "Victor Garrido",
"devDependencies": {
"uglify-js": "^2.4.23",
"coveralls": "^2.11.6",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.3",
"tslint": "^3.3.0",
"typescript": "^1.8.0",
"webpack": "^1.12.12"
},
"engines": {
"npm": "2.7.4"
}
}