-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "llparse-test-fixture",
"version": "5.1.0",
"description": "A test fixture for llparse (and llparse-based modules)",
"main": "lib/fixture.js",
"types": "lib/fixture.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"prepare": "npm run clean && npm run build",
"lint": "eslint -c eslint.json src/**/*.ts test/**/*.ts",
"lint:fix": "eslint --fix -c eslint.json src/**/*.ts test/**/*.ts",
"test": "node -r ts-node/register/type-check ./test/fixture.test.ts"
},
"files": [
"bin",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/indutny/llparse-test-fixture.git"
},
"keywords": [
"llparse",
"test",
"fixture"
],
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/llparse-test-fixture/issues"
},
"homepage": "https://github.com/indutny/llparse-test-fixture#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^1.5.4",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"llparse": "^7.0.0",
"yargs": "^15.4.1"
}
}