-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "lise",
"version": "1.0.0",
"description": "life in shambles engine",
"main": "index.js",
"scripts": {
"compile": "tsc",
"test": "nyc ava src/*.spec.ts && npm run lint",
"start": "webpack-dev-server --progress --profile --watch --inline --hot --open",
"build": "webpack --progress --profile --env.production",
"lint": "tslint \"src/**/*.ts\" -s node_modules/snazzy -t stylish",
"docs": "typedoc --options typedoc.json --exclude '**/*.spec.ts' ./src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1337programming/LISE.git"
},
"author": "Patrick Opie",
"license": "ISC",
"bugs": {
"url": "https://github.com/1337programming/LISE/issues"
},
"homepage": "https://github.com/1337programming/LISE#readme",
"dependencies": {
"three": "^0.84.0"
},
"devDependencies": {
"@types/jasmine": "^2.5.43",
"@types/node": "^7.0.5",
"@types/three": "^0.83.3",
"@types/webpack": "^2.2.6",
"ava": "^0.18.2",
"awesome-typescript-loader": "^3.0.4",
"core-js": "^2.4.1",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"node-sass": "^4.5.0",
"nyc": "^10.1.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.1",
"snazzy": "^6.0.0",
"style-loader": "^0.13.1",
"to-string-loader": "^1.1.5",
"ts-helper": "0.0.1",
"tslint": "^4.4.2",
"typedoc": "^0.5.7",
"typescript": "^2.1.6",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}