-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "typescript-npm-module-bootstrap",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://wittydeveloper/typescript-npm-module-bootstrap.git"
},
"main": "dist/index.js",
"typings": "definitions/index",
"typescript": {
"definition": "definitions/index"
},
"description": "TypeScript NPM module bootstrap ",
"engineStrict": true,
"devDependencies": {
"@types/es6-shim": "^0.31.32",
"@types/node": "~6.0.46",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-jasmine": "^2.4.2",
"gulp-typescript": "^3.1.3",
"jasmine": "^2.5.2",
"merge2": "^1.0.2",
"rimraf": "~2.5.4",
"run-sequence": "^1.2.2",
"standard-version": "^3.0.0",
"tslint": "~3.15.1",
"tslint-microsoft-contrib": "~2.0.13",
"typescript": "~2.0.6"
},
"scripts": {
"test": "gulp test",
"release": "standard-version"
},
"author": "Charly POLY <hello@charlypoly.com>",
"license": "MIT",
"dependencies": {
"@types/es6-shim": "^0.31.32",
"@types/jasmine": "^2.5.38"
}
}