-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "ekeys",
"version": "4.4.1",
"description": "Animation engine for After Effects expressions",
"private": true,
"main": "dist/eKeys.jsx",
"scripts": {
"test": "jest --watch",
"tsc": "tsc",
"build": "rollup -c",
"watch": "rollup -cw",
"release": "npm run build && gh release create $npm_package_version $npm_package_main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motiondeveloper/eKeys.git"
},
"keywords": [
"after",
"effects",
"expressions",
"easing"
],
"author": "Tim Haywood",
"license": "MIT",
"bugs": {
"url": "https://github.com/motiondeveloper/eKeys/issues"
},
"homepage": "https://github.com/motiondeveloper/eKeys#readme",
"devDependencies": {
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^26.0.13",
"jest": "^26.4.2",
"prettier": "^1.19.1",
"rollup": "^2.27.0",
"rollup-plugin-ae-jsx": "^2.0.0",
"ts-jest": "^26.3.0",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"dependencies": {
"expression-globals-typescript": "^3.0.0"
}
}