-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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": "qtk-todo-mvc",
"version": "1.0.0",
"description": "a proton particles editor with qtk.",
"main": "js/index.js",
"types": "js/index.d.ts",
"scripts": {
"start": "node app.js",
"clean": "rm -rf doc index.js coverage/ src/*.js",
"test": "tsc && webpack && ./node_modules/karma/bin/karma start",
"build": "tsc && webpack && cp -fv index.js www",
"gendoc": "./node_modules/typedoc/bin/typedoc --mode modules --out doc src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qtoolkit/qtk-todo-mvc.git"
},
"keywords": [
"qtk-todo-mvc"
],
"author": "[email protected]",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/qtoolkit/qtk-todo-mvc/issues"
},
"homepage": "https://github.com/qtoolkit/qtk-todo-mvc#readme",
"devDependencies": {
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"mocha": "^3.0.0",
"ts-loader": "^0.8.2",
"typedoc": "^0.4.4",
"typescript": "^2.0.3",
"typings": "^1.3.2",
"webpack": "^1.13.1"
},
"dependencies": {
"qtk": "git+https://github.com/qtoolkit/qtk.git"
}
}