-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "yadda-ng",
"version": "0.0.1",
"description": "const { Playbook, languages.English } = require('yadda'); const { OrganisationLibrary, GroupLibrary, MembershipLibrary } = require('./libraries') const { CommonDictionary } = require('./dictionaries')",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "zunit",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"precommit": "npm run lint && npm run test",
"prepare": "husky install"
},
"author": "Stephen Cresswell",
"engines": {
"node": ">=12"
},
"license": "ISC",
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"zunit": "^3.2.1"
},
"dependencies": {
"debug": "^4.1.0"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"zUnit": {
"pollute": true
}
}