-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "spui",
"displayName": "spui",
"version": "0.1.0",
"description": "spui",
"license": "MIT",
"author": "Sebastien Phaneuf <lochrist@yahoo.com> (https://github.com/lochrist)",
"scripts": {
"build": "run-s clean build-ts bundle",
"watch": "tsc && run-p \"build-ts -- -w\" \"bundle -- -w\"",
"build-ts": "tsc",
"bundle": "rollup -c rollup.config.ts",
"clean": "rm -fr dist es"
},
"devDependencies": {
"@types/jasmine": "^2.5.47",
"@types/node": "^8.0.0",
"bootstrap": "^3.3.7",
"jasmine": "^2.8.0",
"npm-run-all": "^4.1.1",
"rollup": "^0.50.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "~2.4.2"
},
"main": "dist/spui.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/lochrist/spui.git"
},
"keywords": [
"ui",
"dom",
"reactive"
],
"bugs": {
"url": "https://github.com/lochrist/spui/issues"
},
"homepage": "https://github.com/lochrist/spui#readme"
}