-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 872 Bytes
/
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
{
"name": "parser-html",
"version": "1.0.5",
"description": "convert HTML Code to JS object",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive test/test.js",
"testwatch": "npm run test -- --watch"
},
"homepage": "https://github.com/said10/parserHTML",
"repository": {
"type": "git",
"url": "git+https://github.com/said10/parserHTML.git"
},
"keywords": [
"parser html",
"html parser",
"parser",
"parserHTML",
"HTML to JS",
"HTML to Object"
],
"author": "Said Bensamdi",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1"
},
"dependencies": {
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.1.2",
"lodash": "^4.17.10"
}
}