-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "npm-package-template",
"version": "1.0.0-alpha",
"description": "npm package template.",
"author": "Mark <mark@remarkablemark.org> (https://remarkablemark.org)",
"main": "index.js",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"release": "standard-version --no-verify",
"test": "mocha",
"test:coverage": "nyc npm test",
"test:coverage:report": "nyc report --reporter=html",
"test:watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/npm-package-template"
},
"bugs": {
"url": "https://github.com/remarkablemark/npm-package-template/issues"
},
"keywords": [
"npm-package-template"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.15.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"standard-version": "^9.0.0"
},
"files": [],
"license": "MIT"
}