-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pseudo-yaml-ast",
"version": "1.0.10",
"license": "MPL-2.0",
"description": "Parse a YAML string into an object with location properties",
"keywords": [
"parse",
"yaml",
"yml",
"json",
"ast",
"abstract",
"syntax",
"tree",
"loc",
"location"
],
"repository": "github:yldio/pseudo-yaml-ast",
"main": "dist/pseudo-yaml-ast.umd.js",
"jsnext:main": "dist/pseudo-yaml-ast.es.js",
"module": "dist/pseudo-yaml-ast.es.js",
"entry": "src/index.js",
"files": ["dist"],
"bundlesize": [
{
"path": "./src/index.js",
"maxSize": "1.1 kB"
}
],
"scripts": {
"lint": "eslint . --fix --ext .js --ext .md",
"fmt": "prettier --write --single-quote *.md src/*.js *.json",
"ava": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava",
"build": "bup",
"prepublish": "bup",
"size": "bundlesize",
"test": "run-s lint ava size"
},
"dependencies": {
"has-own-prop": "^1.0.0",
"lodash.isnull": "^3.0.0",
"lodash.isundefined": "^3.0.1",
"yaml-ast-parser": "0.0.40"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.0.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"bundlesize": "^0.17.0",
"bup": "^4.1.3",
"cross-env": "^5.1.0",
"eslint": "^4.9.0",
"eslint-config-joyent-portal": "3.3.1",
"eslint-config-prettier": "^2.6.0",
"eslint-config-react-app": "^2.0.1",
"eslint-config-xo-space": "^0.17.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"npm-run-all": "^4.1.1",
"nyc": "^11.2.1",
"prettier": "^1.7.4"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"ava": {
"tap": true,
"require": ["babel-register"],
"babel": "inherit"
}
}