-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.49 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
50
51
{
"name": "usm.io",
"version": "2.3.3",
"description": "Represents an User Story Map and its sub-components and can render it in HTML.",
"main": "src/usm/usm.js",
"scripts": {
"test": "node -v && node node_modules/mocha/bin/mocha \"src/**/tests/*.test.js\"",
"watch-test": "mocha --reporter=min --watch \"src/**/tests/*.test.js\"",
"coverage": "node node_modules/nyc/bin/nyc npm test",
"coverage-detail": "node node_modules/nyc/bin/nyc --reporter=lcov npm test",
"lint": "./node_modules/.bin/eslint .",
"lint-fix": "./node_modules/.bin/eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/frederikheld/usm.io.git"
},
"keywords": [
"html",
"json",
"render",
"user-story-map",
"user-story-mapping",
"usm"
],
"author": "Frederik S. Held ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/frederikheld/usm.io/issues"
},
"homepage": "https://github.com/frederikheld/usm.io#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-files": "^1.4.0",
"eslint": "^6.8.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^10.2.0",
"nyc": "^15.0.1",
"standard": "^14.3.3"
},
"dependencies": {
"fs-extra": "^8.1.0",
"markdown-it": "^13.0.1",
"mustache": "^4.0.1",
"readdirp": "^3.1.1"
}
}