-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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
{
"name": "remove-blocks",
"version": "1.2.0",
"description": "A library that removes marked blocks from any type of code.",
"license": "MIT",
"type": "commonjs",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kudashevs/remove-blocks.git"
},
"homepage": "https://github.com/kudashevs/remove-blocks",
"bugs": "https://github.com/kudashevs/remove-blocks/issues",
"keywords": [
"blocks",
"strip code",
"strip 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",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"typescript": "^5.6.3"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest --colors",
"test:unit": "npm run test /unit/",
"test:spec": "npm run test /acceptance/",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint --cache .",
"format": "prettier --write \"**/*.+(js|json)\" --",
"check": "tsc"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/test"
],
"automock": false,
"collectCoverageFrom": [
"lib/**/*.js"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}