-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "xassert",
"version": "2.0.0",
"description": "xassert is just another assertion library",
"keywords": [
"assertion",
"assert",
"test",
"TDD",
"BDD"
],
"main": "index.js",
"scripts": {
"prepublishOnly": "npm test",
"report:html": "nyc --reporter=html report",
"test:unit": "mocha index.spec.js",
"test:coverage": "nyc npm run test:unit",
"test:examples": "mocha examples/mocha.spec.js",
"test": "npm run lint && npm run test:examples && npm run test:coverage",
"lint": "standard *.js examples/*.js",
"lint:fix": "npm run lint -- --fix --verbose",
"docs:clean": "rm -rf ./docs",
"docs": "npm run docs:clean && jsdoc -c ./jsdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/victorherraiz/xassert.git"
},
"author": "Víctor Herraiz Posada <[email protected]> (https://github.com/victorherraiz)",
"license": "MIT",
"devDependencies": {
"docdash": "^1.2.0",
"jsdoc": "^3.6.4",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"standard": "^14.3.4"
},
"dependencies": {}
}