-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.38 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
65
66
67
68
69
70
71
{
"name": "blue-cli",
"version": "1.0.9",
"description": "Blueprints for your code",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"bin": {
"blue": "dist/index.js"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavlovml/blue.git"
},
"bugs": {
"url": "https://github.com/pavlovml/blue/issues"
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.3.0"
},
"dependencies": {
"glob": "^7.0.3",
"handlebars": "^4.0.5",
"ignore": "^3.1.2",
"isbinaryfile": "^3.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^4.1.5",
"babel-jest": "^6.0.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^2.11.1",
"eslint-plugin-babel": "^2.1.1",
"jest-cli": "^0.8.0",
"standard": "^5.4.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"src"
]
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist"
],
"global": [
"jest",
"describe",
"it",
"pit",
"expect",
"afterEach",
"beforeEach"
]
}
}