-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 891 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 891 Bytes
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
{
"name": "@veams/component",
"version": "1.3.1",
"description": "Component Class for Components in Veams for static page apps",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json --outDir lib --declarationDir lib --declaration --module commonjs",
"start": "tsc --project tsconfig.json --watch --outDir lib --declarationDir lib --declaration --module commonjs",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Veams/component.git"
},
"keywords": [
"Veams"
],
"author": "Sebastian Fitzner",
"license": "MIT",
"bugs": {
"url": "https://github.com/Veams/component/issues"
},
"homepage": "https://github.com/Veams/component#readme",
"devDependencies": {
"@types/jquery": "^3.3.0",
"typescript": "^2.7.1"
},
"dependencies": {
"@veams/base": "^1.0.0"
}
}