-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "@talesoft/animation",
"description": "A simplistic animation library not bound to the DOM",
"keywords": [
"animation"
],
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/Talesoft/animation-js",
"license": "MIT",
"readme": "https://github.com/Talesoft/animation-js/blob/master/README.md",
"repository": {
"url": "https://github.com/Talesoft/animation-js",
"type": "git"
},
"author": {
"name": "Torben Köhn",
"email": "t.koehn@outlook.com",
"url": "https://talesoft.codes"
},
"contributors": [],
"bugs": {
"url": "https://github.com/Talesoft/animation-js/issues",
"email": "t.koehn@outlook.com"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "tslint --project tsconfig.json 'src/**/*.ts'",
"lint:fix": "tslint --project tsconfig.json 'src/**/*.ts' --fix"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/jest-each": "^0.3.4",
"jest": "^24.9.0",
"jest-each": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.6.3"
}
}