-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "apostrophe-guides",
"version": "1.2.1",
"description": "Build guides to document your Apostrophe site.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint .",
"stylelint": "stylelint 'public/**/*.less'",
"test": "nyc --reporter=html npx mocha"
},
"keywords": [
"apostrophecms",
"apostrophe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apostrophecms/apostrophe-guides"
},
"author": "Apostrophe Technologies",
"license": "MIT",
"devDependencies": {
"apostrophe": "^2.116.1",
"eslint": "^7.4.0",
"eslint-config-apostrophe": "^3.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"stylelint": "^13.6.1",
"stylelint-declaration-strict-value": "^1.5.0",
"stylelint-order": "^4.1.0"
},
"dependencies": {
"color-convert": "^2.0.1",
"fuse.js": "^6.4.0",
"glob": "^7.1.6",
"highlight.js": "^10.1.1",
"lodash": "^4.17.15",
"marked": "^1.1.0",
"sanitize-html": "^1.27.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"**/node_modules/**",
"**/test/**",
"**/coverage/**"
],
"all": true
}
}