-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "@devlop-ab/komponent",
"version": "1.0.3",
"description": "Minimalistic frontend component framework",
"keywords": [
"component",
"frontend",
"framework"
],
"author": "Johan Rosenson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devlop/komponent.git"
},
"bugs": {
"url": "https://github.com/devlop/komponent/issues"
},
"homepage": "https://github.com/devlop/komponent",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"jest": "^26.6.3"
}
}