-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
{
"name": "tween-animate",
"version": "4.0.1",
"description": "a faster tween animate library",
"homepage": "https://github.com/voderl/tween-animate",
"scripts": {
"watch": "rollup -c --environment BUILD:development -w",
"build": "rollup -c --environment BUILD:production",
"template": "supervisor -w ./dist/tween-animate.umd.js,./template/ ./template/server.js",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha --require ts-node/register 'test/**/*.spec.ts'"
},
"keywords": [
"tween",
"aniamte",
"performance"
],
"files": [
"dist",
"README.md"
],
"main": "./dist/tween-animate.umd.js",
"module": "./dist/tween-animate.es.js",
"types": "./dist/tween-animate.d.ts",
"author": "voderl",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/chai": "^4.2.16",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"husky": "^6.0.0",
"lodash": "^4.17.21",
"mocha": "^7.2.0",
"module-alias": "^2.2.2",
"node-supervisor": "^1.0.2",
"reload": "^3.1.0",
"rollup": "^2.18.1",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.0.3"
},
"dependencies": {
"eventemitter3": "^4.0.7"
}
}