-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "animation-player-tween",
"version": "1.0.1",
"description": "The animation player tween helper",
"repository": {
"type": "git",
"url": "https://github.com/enheit/animation-player-tween"
},
"main": "lib/index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"lint": "tslint --project .",
"test": "jest --coverage"
},
"author": "Roman Mahotskyi <[email protected]>",
"keywords": [
"tween",
"animation player"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/enheit/animation-player-tween/issues"
},
"files": [
"lib"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.19",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"codecov": "^3.6.1",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}