-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
97 lines (97 loc) · 2.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "himalaya",
"description": "HTML to JSON parser",
"version": "1.1.0",
"author": "Chris Andrejewski <[email protected]>",
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [],
"env": {
"nyc": {
"plugins": [
"istanbul"
]
}
}
},
"bugs": {
"url": "https://github.com/andrejewski/himalaya/issues"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/preset-stage-0": "^7.8.3",
"@babel/register": "^7.17.0",
"ava": "^4.1.0",
"babel-plugin-istanbul": "^6.1.1",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"coveralls": "^3.1.1",
"del": "^3.0.0",
"fixpack": "^2.3.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-sourcemaps": "^3.0.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"prettier": "^3.0.1",
"source-map-support": "^0.5.21",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"homepage": "https://github.com/andrejewski/himalaya",
"keywords": [
"ast",
"html",
"json",
"parser"
],
"license": "ISC",
"main": "lib/index.js",
"nyc": {
"include": [
"src/*.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"lcov",
"text"
]
},
"pre-commit": [
"pre-commit"
],
"pre-push": [
"pre-commit"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/andrejewski/himalaya.git"
},
"scripts": {
"build": "gulp build",
"coverage": "NODE_ENV=nyc nyc npm test && nyc report --reporter=lcovonly",
"format": "fixpack && prettier '**/*.{js,yml,yaml}' --write --log-level warn",
"format-check": "prettier 'src/**/*.{js,yml,yaml}' --check",
"himalaya": "./bin/himalaya.js",
"pre-commit": "npm run format && npm test && npm run build",
"test": "gulp buildSrc --silent && ava"
}
}