forked from andrejewski/himalaya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.05 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
98
{
"name": "himalaya",
"description": "HTML to JSON parser",
"version": "1.1.0",
"author": "Chris Andrejewski <[email protected]>",
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [],
"env": {
"nyc": {
"plugins": [
"istanbul"
]
}
}
},
"bugs": {
"url": "https://github.com/andrejewski/himalaya/issues"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.24.0",
"babel-plugin-istanbul": "^4.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^8.0.0",
"browserify": "^16.0.0",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"fixpack": "^2.3.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-sourcemaps": "^2.1.1",
"nyc": "^11.0.2",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"source-map-support": "^0.5.0",
"standard": "^11.0.0",
"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": [
"prepublish"
],
"pre-push": [
"prepublish"
],
"repository": {
"type": "git",
"url": "https://github.com/andrejewski/himalaya.git"
},
"scripts": {
"build": "gulp build",
"coveralls": "npm run report && nyc report --reporter=text-lcov | coveralls",
"himalaya": "./bin/himalaya.js",
"prepublish": "npm test && npm run build",
"report": "NODE_ENV=nyc nyc npm test",
"test": "fixpack && standard --fix && gulp --silent && ava",
"test-ci": "npm run prepublish"
},
"standard": {
"ignore": [
"/docs/dist/**"
]
}
}