-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.78 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.78 KB
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
{
"name": "@rapidjs.org/documenting",
"version": "0.2.0",
"description": "Unopinionated Markdown-based documentation framework with software specific syntax extensions.",
"author": "Thassilo Martin Schiepanski",
"homepage": "https://github.com/rapidjs-org/documenting#readme",
"keywords": [
"documenting",
"documentation",
"markdown",
"framework"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rapidjs-org/documenting.git"
},
"bugs": {
"url": "https://github.com/rapidjs-org/documenting/issues"
},
"license": "Apache-2.0",
"main": "./build/agent/api.js",
"types": "./types/api.d.ts",
"files": [
"./build/",
"./types/"
],
"scripts": {
"prepare": "npx husky",
"debug": "npx tsc --project ./tsconfig.debug.json",
"debug:watch": "npm run debug -- --watch",
"build:agent": "rm -rf ./types/ && npx tsc --project ./tsconfig.build.json",
"build:client": "node ./scripts/build-client.js",
"build": "rm -rf ./build/ && npm run build:agent && npm run build:client",
"lint": "npx eslint './src/agent/**/*.ts'",
"lint:fix": "npx eslint --fix './src/agent/**/*.ts",
"format": "npx prettier --check './src/agent/**/*.ts'",
"format:fix": "npx prettier --write './src/agent/**/*.ts'",
"sleep": "node ./scripts/sleep.js",
"test:package": "npm run sleep -- 1500 && npx rjs-test unit",
"test:render": "npm run test:package -- ./test/FSPullAgent.test.js",
"test:FSPullAgent": "npm run test:package -- ./test/FSPullAgent.test.js",
"test:GHPullAgent": "npm run test:package -- ./test/GHPullAgent.test.js",
"test:GHPushAgent": "npm run test:package -- ./test/GHPushAgent.test.js",
"test": "npm run test:render && npm run test:FSPullAgent && npm run test:GHPullAgent && npm run test:GHPushAgent",
"test-app": "npm run build:client && node ./test-app/server.js",
"release": "npx rjs-releasing --github"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@rapidjs.org/releasing": "^0.1.0",
"@rapidjs.org/testing": "^0.1.3",
"@rapidjs.org/testing-unit": "^0.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^9.0.11",
"i": "^0.3.7",
"lint-staged": "^15.2.2",
"npm": "^10.8.2",
"prettier": "^3.2.5",
"typescript-eslint": "^7.8.0",
"uglify-js": "^3.19.2"
},
"dependencies": {
"markdown-it": "^14.1.0",
"tar": "^7.4.3"
}
}