-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 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
{
"name": "@taikonauten/component",
"description": "Lightweight JavaScript and TypeScript component library to handle component lifecycle.",
"version": "2.3.11",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "del-cli index.js index.d.ts",
"test": "karma start karma.conf.js",
"build": "npm run clean && tsc --project tsconfig.build.json",
"lint:js": "eslint ./src",
"lint": "npm run lint:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taikonauten/component.git"
},
"author": "Tobias Schubert <ts@taikonauten.com>",
"bugs": {
"url": "https://github.com/taikonauten/component/issues"
},
"homepage": "https://github.com/taikonauten/component",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@taikonauten/linters-js": "^1.1.0",
"@taikonauten/linters-typescript": "^1.2.0",
"@types/chai": "^4.3.3",
"@types/jasmine": "^4.3.0",
"@types/karma": "^6.3.3",
"@types/karma-webpack": "^2.0.11",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"chai": "^4.3.6",
"del-cli": "^5.0.0",
"eslint": "^8.26.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^10.1.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0"
}
}