-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 2.77 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
60
{
"name": "json-asty",
"version": "1.2.2",
"description": "Lossless JSON-to-AST Parser and AST-to-JSON Generator",
"keywords": [ "json", "ast", "parse", "generate" ],
"browser": "lib/json-asty.browser.js",
"main": "lib/json-asty.node.js",
"types": "src/json-asty.d.ts",
"bin": { "json-asty": "src/json-asty.cli.js" },
"repository": {
"type": "git",
"url": "git+https://github.com/rse/json-asty.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"license": "MIT",
"homepage": "https://github.com/rse/json-asty",
"bugs": "https://github.com/rse/json-asty/issues",
"dependencies": {
"asty-astq": "1.14.0",
"pegjs-otf": "2.0.2",
"pegjs-util": "2.0.1",
"chalk": "4.1.2",
"yargs": "17.7.2",
"cli-io": "0.9.12"
},
"devDependencies": {
"grunt": "1.6.1",
"grunt-cli": "1.4.3",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "24.3.0",
"grunt-browserify": "6.0.0",
"grunt-mocha-test": "0.13.3",
"browserify": "17.0.0",
"envify": "4.1.0",
"babelify": "10.0.0",
"uglifyify": "5.0.2",
"browserify-header": "1.1.0",
"browserify-derequire": "1.1.1",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-promise": "6.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/plugin-transform-runtime": "7.24.7",
"mocha": "10.5.0",
"chai": "4.4.1"
},
"upd": [ "!chalk" ],
"scripts": {
"prepublishOnly": "grunt default",
"build": "grunt default"
}
}