-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.99 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
{
"name": "sveltedoc-parser",
"version": "4.4.0",
"description": "Generate a JSON documentation for a Svelte file",
"main": "index.js",
"types": "./typings.d.ts",
"scripts": {
"lint": "eslint ./**/*.js",
"test": "mocha ./test/**/*.spec.js",
"prepublishOnly": "npm run test && npm run lint",
"test:unit": "mocha ./test/unit/**/*.spec.js",
"test:integration": "mocha ./test/**/integration/**/*.spec.js",
"test:integration-overall": "mocha ./test/**/integration/overall/overall.main.spec.js",
"test:svelte2": "mocha ./test/svelte2/**/*.spec.js",
"test:svelte2:unit": "mocha ./test/svelte2/unit/**/*.spec.js",
"test:svelte2:integration": "mocha ./test/svelte2/integration/**/*.spec.js",
"test:svelte3": "mocha ./test/svelte3/**/*.spec.js",
"test:svelte3:unit": "mocha ./test/svelte3/unit/**/*.spec.js",
"test:svelte3:integration": "mocha ./test/svelte3/integration/**/*.spec.js",
"generate-examples": "node ./scripts/generate-examples.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexprey/sveltedoc-parser.git"
},
"keywords": [
"sveltedoc",
"sveltefile",
"svelte",
"doc",
"parser",
"jsdoc"
],
"author": "Alexey Mulyukin",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexprey/sveltedoc-parser/issues"
},
"homepage": "https://github.com/alexprey/sveltedoc-parser",
"dependencies": {
"espree": "9.2.0",
"eslint": "8.4.1",
"htmlparser2-svelte": "4.1.0"
},
"devDependencies": {
"chai": "4.1.2",
"dirty-chai": "2.0.1",
"eslint": "8.4.1",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"mocha": "9.1.3",
"glob": "7.2.0"
},
"engines": {
"node": ">=10.0.0"
}
}