-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
{
"name": "html5-utils",
"version": "1.0.0-beta.6",
"description": "html5 dom utils....",
"main": "index.js",
"scripts": {
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run compile && jest"
},
"dependencies": {
"lodash": "^4.17.4",
"parse5": "^3.0.1",
"babel-core": "^6.21.0"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aruntk/html5-utils.git"
},
"jest": {
"testPathIgnorePatterns": ["src/", "node_modules/"]
},
"keywords": [
"dom",
"html5",
"parse5",
"utils",
"cheerio"
],
"author": "aruntk",
"license": "MIT",
"bugs": {
"url": "https://github.com/aruntk/html5-utils/issues"
},
"homepage": "https://github.com/aruntk/html5-utils#readme"
}