-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"name": "@bloq/create-package",
"version": "1.2.0",
"description": "Bloq's NPM initializer for packages",
"keywords": [
"bloq",
"create",
"init",
"npm",
"package",
"template"
],
"license": "MIT",
"author": "Gabriel Montes <gabriel@bloq.com>",
"files": [
"bin",
"src",
"template.tar"
],
"main": "src/index.js",
"bin": {
"bloq-create-package": "bin/create.js"
},
"repository": "bloq/create-package",
"scripts": {
"check": "dependency-check . && dependency-check . --unused --no-dev",
"check:outdated": "npm-check -i husky",
"lint": "eslint --cache .",
"prepublish": "tar -C template -cvf template.tar .",
"prepublishOnly": "tag-matches",
"test": "rm -rf test-package && mkdir test-package && cd test-package && npm link && bloq-create-package && npm run build && npm run check && npm run coverage && npm run lint && cd .. && rm -rf test-package"
},
"dependencies": {
"tar": "5.0.5"
},
"devDependencies": {
"check-tag-matches": "1.0.0",
"dependency-check": "4.1.0",
"eslint": "6.8.0",
"eslint-config-bloq": "2.3.0",
"eslint-config-prettier": "6.9.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsdoc": "20.0.4",
"eslint-plugin-mocha": "6.2.2",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prefer-arrow": "1.1.7",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-require-path-exists": "1.1.9",
"eslint-plugin-standard": "4.0.1",
"husky": "4.0.1",
"npm-check": "5.9.0"
}
}