-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 KB
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
{
"name": "scoosh",
"version": "0.6.5",
"description": "A code generation tool to make adding code a scoosh",
"bin": {
"scoosh": "./bin/scoosh.js"
},
"main": "./src/index.js",
"scripts": {
"test": "mocha --reporter spec --recursive \"src/**/*.spec.js\" \"bin/**/*.spec.js\"",
"watch": "mocha --watch \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/findmypast-oss/scoosh.git"
},
"author": "Findmypast",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/findmypast-oss/scoosh/issues"
},
"homepage": "https://github.com/findmypast-oss/scoosh#readme",
"dependencies": {
"commander": "*",
"ejs": "*",
"expand-tilde": "*",
"fs": "*",
"fs-walk": "*",
"inquirer": "*",
"lodash": "*",
"path": "*",
"recur-fs": "^2.2.4",
"uuid": "^3.0.1"
},
"engines": {
"node": "*"
},
"devDependencies": {
"babel-cli": "*",
"babel-preset-es2015": "*",
"chai": "*",
"eslint": "^3.0.0",
"eslint-config-google": "*",
"eslint-config-standard": "*",
"eslint-plugin-import": "*",
"eslint-plugin-mocha": "*",
"eslint-plugin-node": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-standard": "*",
"fs-extra": "^3.0.1",
"mkdirp": "^0.5.1",
"mocha": "*",
"prettier": "^1.4.4"
},
"standard": {
"env": [
"mocha"
]
}
}