-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.56 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
{
"name": "paper-animate",
"version": "1.2.2",
"description": "An animation library for paper.js",
"main": "dist/src/export.js",
"typings": "dist/src/animatePaper.d.ts",
"directories": {
"doc": "doc"
},
"dependencies": {},
"peerDependencies": {
"paper": ">= 0.9.0"
},
"devDependencies": {
"@types/jest": "^19.2.3",
"@types/node": "^7.0.13",
"@types/paper": "^0.9.1",
"browserify": "^14.3.0",
"gulp": "^3.8.11",
"gulp-notify": "^2.2.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-streamify": "^1.0.2",
"gulp-typescript": "^3.1.6",
"gulp-uglify": "^2.1.2",
"gulp-yuidoc": "^0.1.2",
"jest": "^20.0.0",
"jquery": "^3.2.1",
"merge2": "^1.0.3",
"qunit": "^1.0.0",
"ts-jest": "^19.0.14",
"tsify": "^3.0.1",
"typescript": "^2.2.2",
"uglify-js": "^2.8.22",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Eartz/animatePaper.js.git"
},
"keywords": [
"paper.js",
"javascript",
"vector-graphics",
"animation"
],
"author": "Camille Hodoul",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eartz/animatePaper.js/issues"
},
"homepage": "https://github.com/Eartz/animatePaper.js",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}