-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "@scenejs/iframe",
"version": "0.1.0",
"description": "A library that control the animation of iframe with scenejs",
"main": "./dist/iframe.cjs.js",
"module": "./dist/iframe.esm.js",
"sideEffects": false,
"types": "declaration/index.d.ts",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c && npm run declaration && print-sizes ./dist",
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json",
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"prerelease": "npm run build && prerelease --dirs=dist,doc",
"release": "npm run build && npm run doc && release --dirs=dist,doc,examples",
"release:init": "npm run build && npm run doc && release -i --dirs=dist,doc,examples"
},
"keywords": [
"scenejs",
"scene",
"css",
"javascript",
"iframe",
"message",
"control",
"timeline",
"requestAnimationFrame",
"motion"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/scenejs-iframe.git"
},
"author": "Daybrush",
"license": "MIT",
"bugs": {
"url": "https://github.com/daybrush/scenejs-iframe/issues"
},
"homepage": "https://github.com/daybrush/scenejs-iframe#readme",
"dependencies": {
"@daybrush/utils": "^0.9.0",
"scenejs": "^1.0.0"
},
"devDependencies": {
"@daybrush/builder": "0.0.5",
"@daybrush/jsdoc": "^0.3.7",
"@daybrush/release": "^0.2.4",
"daybrush-jsdoc-template": "^1.5.3",
"print-sizes": "0.0.4",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}