-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 938 Bytes
/
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
{
"name": "femtotween",
"version": "2.0.3",
"description": "a minimalistic tween library",
"files": [
"dist/",
"types/"
],
"repository": {
"type": "git",
"url": "https://github.com/pearofducks/femtoTween"
},
"main": "dist/femtotween.js",
"module": "dist/femtotween.js",
"exports": "./dist/femtotween.js",
"types": "./types/index.d.ts",
"sideEffects": false,
"type": "module",
"scripts": {
"test": "node test",
"types": "tsc",
"build": "rollup -c",
"preversion": "npm run test && npm run build && npm run types",
"version": "npm publish",
"postversion": "git push --follow-tags"
},
"author": "Dave Honneffer <[email protected]>",
"license": "MIT",
"devDependencies": {
"abdomen": "^1.0.0",
"jsdom": "^16.6.0",
"rollup": "^2.53.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^11.1.1",
"typescript": "^4.3.5",
"uvu": "^0.5.1"
}
}