-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "@swanide/swan-eslint-parser",
"version": "0.0.1",
"description": "swan eslint parser",
"main": "index.js",
"files": [
"types",
"index.*"
],
"scripts": {
"prepublish": "npm run build",
"prebuild": "npm run -s clean",
"build:es": "tsc --module es6",
"build": "tsc --module es6 && rollup -c -o index.js",
"clean": "rm -rf .nyc_output .temp coverage index.js",
"pretest": "npm run -s build",
"test": "npm run -s test:mocha",
"test:mocha": "nyc mocha \"test/spec/*.js\" --reporter dot --timeout 10000",
"preupdate-fixtures": "npm run -s build",
"update-fixtures": "node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/estree": "0.0.50",
"assert": "^2.0.0",
"debug": "^4.3.3",
"eslint-scope": "^5.1.1",
"eslint-visitor-keys": "^2.1.0",
"espree": "^7.3.1",
"esquery": "^1.4.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/debug": "^4.1.7",
"@types/eslint-scope": "^3.7.1",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/lodash": "^4.14.176",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"dts-bundle": "^0.7.3",
"eslint": "^7.32.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rollup": "^2.60.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
}
}