-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (64 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"type": "module",
"devDependencies": {
"@types/chai": "latest",
"@types/mocha": "latest",
"chai": "latest",
"esbuild": "latest",
"fake-indexeddb": "latest",
"jsdom": "latest",
"jsdom-global": "latest",
"mocha": "latest",
"sass": "latest",
"typedoc": "latest",
"typescript": "latest"
},
"scripts": {
"test": "mocha",
"start": "npm run build:clean && npm run start:parallel",
"start:parallel": "npm run start:watch & npm run start:sass",
"start:watch": "npx tsc --watch",
"start:sass": "npx sass --watch ./style:./dist",
"build": "npm run build:clean && npm run build:sass && npm run build:ts",
"build:clean": "rm -rf ./dist/*",
"build:sass": "npx sass --style=compressed ./style:./dist",
"build:ts": "tsc",
"test:ts": "tsc --noEmit",
"update-material-icons": "./update_material_icon.sh > script/component/MaterialIcon.ts",
"prepublishOnly": "npm run build"
},
"name": "@intermesh/goui",
"description": "Group-Office User Interface",
"version": "2.0.7",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Intermesh/goui.git"
},
"keywords": [
"Typescript",
"Framework",
"UI",
"Components"
],
"author": "Intermesh",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/Intermesh/goui/issues"
},
"homepage": "https://github.com/Intermesh/goui#readme",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"dependencies": {
}
}