-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.37 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.37 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
{
"name": "go-loader-dir",
"version": "0.0.1",
"description": "Go loader for local files",
"main": "./lib/loader.js",
"scripts": {
"ci": "npm run lint:ci && npm run unit:ci",
"coverage": "npm run unit; opn coverage/lcov-report/index.html",
"lint": "standard -v | snazzy",
"lint:ci": "standard",
"prepublishOnly": "npm run test",
"test": "npm run lint && npm run unit",
"unit": "jest --coverage",
"unit:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
"unit:watch": "jest --coverage --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gocli/go-loader-dir.git"
},
"keywords": [
"template",
"generator",
"scaffold",
"cli",
"go"
],
"author": "Stanislav Termosa <termosa.stanislav@gmail.com> (https://me.st)",
"license": "MIT",
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/gocli/go-loader-dir/issues"
},
"homepage": "https://github.com/gocli/go-loader-dir#readme",
"dependencies": {
"minimist": "1.2.0",
"ncp": "^2.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"jest": "^22.4.2",
"opn-cli": "^3.1.0",
"snazzy": "^7.1.1",
"standard": "^11.0.0"
},
"standard": {
"globals": [
"afterAll",
"beforeAll",
"beforeEach",
"describe",
"expect",
"it",
"jest"
]
}
}