This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
78 lines (78 loc) · 2.03 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
69
70
71
72
73
74
75
76
77
78
{
"name": "es6-tween",
"version": "5.5.11",
"description": "ES6 implementation of amazing tween.js",
"browser": "bundled/Tween.min.js",
"cdn": "bundled/Tween.min.js",
"main": "bundled/Tween.js",
"module": "src/index.js",
"directories": {
"example": "examples"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/dalisoft"
},
"scripts": {
"source": "npx rollup -c",
"minify": "npx uglifyjs bundled/Tween.js -c -m -o bundled/Tween.min.js --source-map \"filename='bundled/Tween.min.js.map'\"",
"build": "npm run source && npm run minify",
"dev": "npx rollup -c -w",
"prepublishOnly": "npm run lint && npm run build",
"doc": "npx jsdoc --readme README.md --configure jsdoc.json",
"doc-md": "npx jsdoc2md src/** > API.md",
"test": "npm run lint && npm run source && npx ava",
"lint": "npx eslint ./src",
"lint-fix": "npx eslint ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tweenjs/es6-tween.git"
},
"keywords": [
"tween",
"tweening",
"es6",
"numeric",
"interpolation",
"easing",
"emit"
],
"author": "es6-tween contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/tweenjs/es6-tween/issues"
},
"homepage": "https://es6-tween.js.org",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"ava": "^5.1.0",
"docdash": "^1.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jsdoc": "^3.6.2",
"jsdoc-to-markdown": "^8.0.0",
"puppeteer": "^1.16.0",
"rollup": "^1.12.1",
"rollup-plugin-babel": "^4.3.2",
"uglify-js": "^3.5.12"
},
"dependencies": {},
"ava": {
"verbose": true,
"require": [
"esm"
],
"babel": {
"extensions": [
"js"
]
}
}
}