-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "phaser-typescript-tutorial",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"lint": "tslint src/**/*.ts",
"test": "echo 'noop'",
"prepublish": "npm run lint && npm run build && npm run test",
"prepush": "npm run prepublish",
"precommit": "npm run lint"
},
"author": {
"name": "SuperPaintman",
"email": "SuperPaintmanDeveloper@gmail.com",
"url": "https://superpaintman.com/"
},
"files": [
"LICENSE",
"README.md",
"dist/",
"templates/",
"assets/"
],
"devDependencies": {
"@types/node": "7.0.5",
"awesome-typescript-loader": "3.1.2",
"clean-webpack-plugin": "0.1.16",
"css-loader": "0.27.3",
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.10.1",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.3",
"imagemin-webpack-plugin": "1.4.4",
"phaser": "2.6.2",
"style-loader": "0.16.0",
"stylus": "0.54.5",
"stylus-loader": "3.0.1",
"tslint": "4.5.1",
"tslint-eslint-rules": "3.5.1",
"typescript": "2.1.6",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperPaintman/phaser-typescript-tutorial.git"
}
}