-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "dot-hello-world",
"version": "1.0.0",
"description": "How many config files does it take to build a modern Typescript app?",
"repository": {
"type": "git",
"url": "git+https://github.com/dpyro/dot-hello-world.git"
},
"author": {
"name": "Sumant Manne",
"email": "<sumant.manne@gmail.com>"
},
"license": "MIT",
"homepage": "https://github.com/dpyro/dot-hello-world",
"bugs": {
"url": "https://github.com/dpyro/dot-hello-world/issues"
},
"main": "dist/index.js",
"directories": {
"test": "test/"
},
"scripts": {
"prepublishOnly": "gulp test",
"start": "node dist/index.js",
"test": "gulp test",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- test/test.js -R spec"
},
"devDependencies": {
"@types/node": "^7.0.12",
"del": "^2.2.2",
"eslint": "^3.19.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-imagemin": "^3.2.0",
"gulp-mocha": "^4.1.0",
"gulp-sourcemaps": "^2.5.0",
"gulp-tslint": "^7.1.0",
"gulp-typedoc": "^2.0.2",
"gulp-typescript": "^3.1.6",
"istanbul": "^0.4.5",
"markdown-link-check": "^3.0.3",
"mocha": "^3.2.0",
"standard": "^9.0.2",
"tslint": "^5.0.0",
"typedoc": "^0.5.9",
"typescript": "^2.2.2"
},
"keywords": [
"javascript",
"typescript",
"helloworld",
"boilerplate"
]
}