-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 958 Bytes
/
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
{
"name": "yaml-parser",
"version": "0.7.0-final",
"description": "YAML 1.2 parser and serializer",
"keywords": [
"yaml",
"parser",
"serializer",
"pyyaml"
],
"homepage": "https://github.com/expeditejs/yaml-parser",
"author": "Vladimir Zapparov <[email protected]>",
"contributors": [
"Alok Prateek <[email protected]> (https://alokprateek.in/)"
],
"license": "MIT",
"repository": "expeditejs/yaml-parser",
"files": [
"index.js",
"lib/",
"bin/",
"dist/"
],
"bin": {
"yaml-parser": "bin/yaml-parser.js"
},
"dependencies": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
},
"devDependencies": {
"ansi": "^0.3.1",
"benchmark": "^2.1.4",
"browserify": "^16.2.2",
"codemirror": "^5.13.4",
"eslint": "^4.1.1",
"fast-check": "1.1.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"uglify-js": "^3.0.1"
},
"scripts": {
"test": "make test"
}
}