-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "ast-matcher",
"version": "1.2.0",
"description": "Create pattern based AST matcher function",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint index.js spec",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"pretest": "npm run lint",
"browser-test": "browserify spec/all-browser-tests.js | browser-do --tap",
"nodejs-test": "tape \"spec/*.spec.js\"",
"test": "npm run nodejs-test && npm run browser-test"
},
"repository": {
"type": "git",
"url": "https://github.com/dumberjs/ast-matcher.git"
},
"keywords": [
"ast",
"parser",
"match",
"esprima",
"acorn",
"espree",
"meriyah"
],
"author": "Chunpeng Huo",
"license": "MIT",
"bugs": {
"url": "https://github.com/dumberjs/ast-matcher/issues"
},
"homepage": "https://github.com/dumberjs/ast-matcher#readme",
"devDependencies": {
"@babel/parser": "^7.24.5",
"acorn": "^8.11.3",
"browser-do": "^5.0.0",
"browserify": "^17.0.0",
"cherow": "^1.6.9",
"eslint": "^9.2.0",
"espree": "^10.0.1",
"esprima": "^4.0.1",
"meriyah": "^4.4.2",
"oxc-parser": "^0.9.0",
"standard-changelog": "^6.0.0",
"tape": "^5.7.5"
}
}