-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.62 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
{
"name": "@akolos/ts-tween",
"version": "1.0.11",
"main": "build/cjs/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"scripts": {
"start": "npm run build && node build/cjs/index.js",
"clean": "rm -rf build",
"start:clean": "npm run clean && npm run start",
"build": "tsc && tsc --m commonjs --outDir build/cjs/ --declaration false",
"test": "jest --verbose",
"test:debug": "node --inspect-brk=0.0.0.0 node_modules/jest/bin/jest.js --runInBand --config jest.config.js",
"pub": "npm run clean && npm run build && npm publish --access=public"
},
"keywords": [
"TypeScript",
"tween",
"animation"
],
"author": "Andrew Kolos <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/andrewkolos/ts-tween",
"dependencies": {
"@akolos/clone-dumb-object": "1.0.0",
"@akolos/custom-error": "1.0.0",
"@akolos/event-emitter": "^2.0.2",
"@types/dedent": "^0.7.0",
"@types/read": "0.0.29",
"dedent": "^0.7.0",
"ts-nameof": "^5.0.0",
"tweenjs": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^20.12.12",
"@types/ts-nameof": "^4.2.1",
"jest": "^28.1.1",
"ts-essentials": "^9.1.2",
"ts-jest": "^28.0.4",
"ts-node-register": "^1.0.0",
"tslint": "^6.1.2",
"tslint-clean-code": "^0.2.10",
"typescript": "^4.7.3"
},
"description": "A simple tweening/animation library for TypeScript/JavaScript."
}