-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 Bytes
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
{
"name": "hastml",
"version": "0.1.0",
"description": "Hasty HTML, XML and SGML walker",
"main": "index.js",
"author": "Jessica Stokes <hello@jessicastokes.net>",
"license": "MIT",
"scripts": {
"prepublish": "babel src --out-dir . --source-maps inline --ignore \"**/*.spec.js\"",
"test": "jest",
"lint": "eslint src",
"lint-and-fixup": "eslint --fix src"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^26.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^7.0.0",
"jest": "^25.0.0"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"env"
]
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
]
}
}