forked from humanwhocodes/momoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "@humanwhocodes/momoa",
"version": "2.0.4",
"description": "JSON AST parser, tokenizer, printer, traverser.",
"author": "Nicholas C. Zakas",
"main": "api.js",
"files": [
"api.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/momoa.git"
},
"bugs": {
"url": "https://github.com/humanwhocodes/momoa/issues"
},
"homepage": "https://github.com/humanwhocodes/momoa#readme",
"scripts": {
"build": "rollup -c",
"lint": "eslint src/*.js tests/*.js",
"perf": "npm run build && node tools/perf.js",
"regen": "npm run build && node tools/regenerate-test-data.js",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "mocha -r esm tests/**/*.js"
},
"keywords": [
"json",
"ast",
"json tree",
"abstract syntax tree"
],
"license": "Apache-2.0",
"engines": {
"node": ">=10.10.0"
},
"dependencies": {},
"devDependencies": {
"beautify-benchmark": "0.2.4",
"benchmark": "2.1.4",
"chai": "4.3.6",
"eslint": "8.20.0",
"esm": "3.2.25",
"json-to-ast": "2.1.0",
"mocha": "10.1.0",
"rollup": "1.12.3",
"sinon": "14.0.2"
}
}