-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "juke",
"version": "0.0.1",
"description": "Game Engine experiment",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/karma start",
"build-dev": "webpack",
"start": "webpack-dev-server --port 1338",
"lint": "tslint --project tsconfig.json --fix"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/minajevs/Juke.git"
},
"author": "Dmitrijs Minajevs @minajevs",
"license": "ISC",
"homepage": "https://github.com/minajevs/Juke#readme",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.39",
"@types/node": "^8.0.14",
"@types/sinon": "^2.3.3",
"awesome-typescript-loader": "^3.0.0-beta.18",
"chai": "^4.1.0",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"pre-commit": "^1.2.2",
"sinon": "^2.3.8",
"source-map-loader": "^0.2.1",
"tslint": "^5.5.0",
"typedoc": "^0.7.1",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^2.1.6",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.1.0-beta.8"
}
}