-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 860 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
{
"name": "@fmvilas/pseudo-yaml-ast",
"description": "Fork of pseudo-yaml-ast. Parse a YAML string into an object with location properties",
"version": "0.3.1",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"parse",
"yaml",
"yml",
"json",
"ast",
"abstract",
"syntax",
"tree",
"loc",
"location"
],
"main": "src/index.js",
"scripts": {
"lint": "eslint . --fix --ext .js --ext .md",
"ava": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava",
"test": "npm run lint && npm run ava"
},
"dependencies": {
"yaml-ast-parser": "0.0.43"
},
"devDependencies": {
"ava": "^0.25.0",
"lodash.get": "^4.4.2",
"nyc": "^11.2.1"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"ava": {
"tap": true
}
}