-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (51 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
{
"type": "module",
"devDependencies": {
"sass": "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": "npx tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@fortaine/fetch-event-source": "latest",
"@intermesh/goui": "latest",
"chart.js": "latest",
"rrule": "latest"
},
"author": "Intermesh",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Intermesh/groupoffice-core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Intermesh/groupoffice-core.git"
},
"keywords": [
"Typescript",
"Framework",
"Group-Office"
],
"homepage": "https://github.com/Intermesh/goui#readme",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"name": "@intermesh/groupoffice-core",
"description": "Run \"npm install\" to install. Then run \"npm start\" for watch mode or build once with \"npm run build\"",
"version": "1.0.9",
"main": "index.js"
}