-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
43
44
45
46
47
48
49
{
"name": "iate-components",
"version": "0.5.2",
"description": "IATE common components",
"main": "index.js",
"scripts": {
"lint": "lynt src/**.js",
"test": "npm run lint; nyc --reporter=html mocha src/**/test/*.js",
"watch-test": "npm test; chokidar src/*.js src/test/*.js -i 'coverage' -c 'npm test' --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afmeirelles/components.git"
},
"keywords": [
"iate",
"components",
"validator",
"errors"
],
"author": "André Meirelles (https://github.com/afmeirelles)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/afmeirelles/components/issues"
},
"homepage": "https://github.com/afmeirelles/components#readme",
"dependencies": {
"ajv": "^6.11.0",
"lodash": "^4.17.15",
"lynt": "^0.5.5"
},
"devDependencies": {
"chokidar-cli": "^2.1.0",
"expect.js": "^0.3.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"sinon": "^9.0.0"
},
"nyc": {
"exclude": [
"**/test/*.js"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
}