-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "expression-globals-typescript",
"version": "3.3.2",
"description": "A library providing types for expressions, as well as for mocking the API (such as thisLayer and comp()) ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\"",
"docs": "typedoc --name 'AE Expressions' --theme docs-theme/ --readme none --out docs src/index.ts",
"release": "npm run build && np"
},
"devDependencies": {
"np": "^10.1.0",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timhaywood/expression-globals-typescript.git"
},
"keywords": [
"expressions",
"typescript",
"after-effects"
],
"author": "Tim Haywood",
"license": "MIT",
"bugs": {
"url": "https://github.com/timhaywood/expression-globals-typescript/issues"
},
"homepage": "https://github.com/timhaywood/expression-globals-typescript#readme",
"dependencies": {
"typedoc": "^0.20.34"
}
}