-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1003 Bytes
/
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": "wet-template",
"version": "1.0.0",
"description": "A minimalist project template for webpack, TypeScript and Mocha (with Chai)",
"main": "dist/index.js",
"scripts": {
"test": "mocha build/test/test.js",
"clean": "rimraf ./build/* && rimraf ./dist/* && rimraf ./example/js/*",
"prebuild": "node provision.js",
"build": "tsc",
"postbuild": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wakecoder/wet-template.git"
},
"keywords": [
"template",
"TypeScript",
"minimalist",
"webpack",
"project",
"project-template",
"mocha",
"chai"
],
"author": "wakecoder",
"license": "MIT",
"bugs": {
"url": "https://github.com/wakecoder/wet-template/issues"
},
"homepage": "https://github.com/wakecoder/wet-template#readme",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"html-loader": "^0.4.3",
"mocha": "^3.0.2",
"rimraf": "^2.5.4",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack": "^1.13.2"
}
}