-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
68
69
70
71
72
73
74
{
"name": "spec-generator",
"type": "module",
"version": "1.5.0",
"description": "InterPlanetary Standards Edited and Integrated to Travel Yonder (IPSEITY)",
"author": "Robin Berjon <robin@berjon.com>",
"license": "MIT",
"scripts": {
"build-css": "NODE_ENV=production cssn ./static/css/ipseity.css ./static/css/ipseity.min.css",
"build": "npm run build-css",
"prepublishOnly": "npm run build-css",
"test": "mocha"
},
"bin": {
"ipseity": "./bin/ipseity.js",
"spec-generator": "./bin/ipseity.js"
},
"mocha": {
"reporter": "spec",
"bail": true
},
"nodemonConfig": {
"watch": [
"lib",
"bin"
]
},
"repository": {
"type": "git",
"url": "https://github.com/darobin/spec-generator.git"
},
"eslintConfig": {
"env": {
"browser": true,
"mocha": true,
"es2021": true
},
"extends": "eslint:recommended",
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {}
},
"style": "ipseity.css",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"axios": "^1.6.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"concurrently": "^8.2.2",
"cssn": "^4.1.0",
"eslint": "^8.53.0",
"hast-util-sanitize": "^5.0.1",
"jsdom": "^22.1.0",
"mdast-util-find-and-replace": "^3.0.1",
"mdast-util-to-string": "^4.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"normalize.css": "^8.0.1",
"pluralize": "^8.0.0",
"remark": "^15.0.1",
"remark-directive": "^3.0.0",
"remark-heading-id": "^1.0.1",
"remark-html": "^16.0.1",
"remark-squeeze-paragraphs": "^6.0.0",
"respec": "^34.2.1",
"selectron-test": "^2.0.0",
"specref": "github:tobie/specref",
"unist-util-visit": "^5.0.0",
"webref": "github:darobin/webref"
}
}