-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "json-to-ast",
"version": "2.1.0",
"author": "Vlad Trushin",
"description": "JSON AST parser",
"homepage": "https://github.com/vtrushin/json-to-ast",
"repository": "vtrushin/json-to-ast",
"maintainers": [
{
"name": "Vlad Trushin <monospectr@mail.ru> (https://github.com/vtrushin)",
"email": "monospectr@mail.ru",
"github-username": "vtrushin"
}
],
"keywords": [
"json-parser",
"parser",
"ast",
"json",
"tree"
],
"main": "build.js",
"files": [
"build.js",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">= 4"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-helpers": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"coveralls": "^3.0.2",
"mocha": "5.2.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.4",
"rollup-plugin-node-resolve": "^3.0.0"
},
"dependencies": {
"code-error-fragment": "0.0.230",
"grapheme-splitter": "^1.0.4"
},
"license": "MIT"
}