-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.55 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
55
56
57
58
59
60
61
62
63
64
{
"name": "generator-typings",
"version": "1.0.12",
"description": "Create typings repository for `typings` (https://github.com/typings/typings)",
"homepage": "https://github.com/typings/generator-typings",
"author": {
"name": "unional",
"url": "https://github.com/unional"
},
"main": "generators/app/index.js",
"files": [
"generators/app"
],
"keywords": [
"yeoman-generator",
"typings",
"tsd",
"Definitely Typed",
"d.ts"
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"change-case": "^3.0.0",
"extend": "^3.0.0",
"rc": "^1.1.6",
"simple-git": "^1.43.0",
"typings-core": "^2.0.0",
"update-notifier": "^2.0.0",
"yeoman-generator": "^0.24.1",
"yosay": "^2.0.0"
},
"devDependencies": {
"dependency-check": "^2.5.2",
"eslint-config-xo-space": "^0.16.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^4.0.1",
"gulp-nsp": "^2.4.2",
"gulp-plumber": "^1.1.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.4.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/typings/generator-typings.git"
},
"scripts": {
"dependency-check": "dependency-check . --unused --no-dev && dependency-check . --missing --no-dev",
"prepublish": "npm run dependency-check && gulp prepublish && gulp",
"test": "gulp"
},
"license": "MIT"
}