-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "strip-code",
"version": "1.1.0",
"description": "A library that strips marked blocks of code from any type of code.",
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kudashevs/strip-code.git"
},
"homepage": "https://github.com/kudashevs/strip-code",
"bugs": "https://github.com/kudashevs/strip-code/issues",
"keywords": [
"strip",
"strip code",
"strip blocks",
"strip code blocks",
"remove code",
"remove blocks",
"remove code blocks"
],
"authors": [
{
"name": "Sergey Kudashev",
"email": "kudashevs@gmail.com"
}
],
"dependencies": {
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.10.0",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"prettier": "^3.1.0",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"scripts": {
"test": "vitest run",
"test:unit": "npm run test ./test/unit/",
"test:spec": "npm run test ./test/acceptance/",
"test:coverage": "vitest run --coverage",
"lint": "eslint --cache .",
"format": "prettier --write \"**/*.+(js|json)\" --",
"check": "tsc"
}
}