This repository has been archived by the owner on Nov 25, 2021. It is now read-only.
forked from vtrushin/json-to-ast
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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-ast",
"version": "2.1.7",
"description": "JSON parser AST utilities",
"author": "Romain Gaucher",
"homepage": "https://github.com/neuroo/json-ast",
"repository": "neuroo/json-ast",
"maintainers": [
{
"name": "Vlad Trushin <[email protected]> (https://github.com/vtrushin)",
"email": "[email protected]",
"github-username": "vtrushin"
},
{
"name": "Romain Gaucher (https://github.com/neuroo)",
"email": "[email protected]",
"github-username": "neuroo"
}
],
"license": "MIT",
"keywords": [
"json",
"extended-json",
"parser",
"ast"
],
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "gulp es6",
"test": "./node_modules/.bin/_mocha --compilers js:babel-core/register",
"prepublish": "npm run build",
"coverage": "babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- --reporter dot"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.6.0",
"chalk": "^1.1.3",
"coveralls": "^2.11.9",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-notify": "^2.2.0",
"gulp-rollup": "^1.7.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.4",
"lodash": "^4.14.0",
"mocha": "^2.4.5",
"webpack": "^1.13.1"
}
}