-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "dogma-html-parser",
"version": "0.0.1",
"description": "HTML parser and compiler",
"main": "lib/index.js",
"scripts": {
"build": "./scripts/build.js",
"test": "flow && eslint . && jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dogma-io/dogma-html-parser.git"
},
"keywords": [
"html",
"parser",
"compiler"
],
"author": "Matthew Dahl <https://github.com/sandersky>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dogma-io/dogma-html-parser/issues"
},
"homepage": "https://github.com/dogma-io/dogma-html-parser#readme",
"devDependencies": {
"babel-eslint": "8.0.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"eslint": "4.7.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-flowtype": "2.35.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"flow-bin": "0.54.1",
"jest-cli": "21.1.0",
"rollup": "0.50.0",
"rollup-plugin-flow": "1.1.1",
"rollup-plugin-uglify": "2.0.1",
"uglify-es": "3.1.0",
"uglifyjs-webpack-plugin": "0.4.6",
"webpack": "3.6.0"
}
}