-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "brdom.js",
"version": "2.1.3",
"description": "Generate HTML at runtime with javascript",
"main": "lib/br-dom.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "./node_modules/typescript/bin/tsc",
"watch-ts": "./node_modules/typescript/bin/tsc --watch",
"pub": "npm publish",
"ver-patch": "npm --force --no-git-tag-version version patch",
"ver-minor": "npm --force --no-git-tag-version version minor",
"ver-major": "npm --force --no-git-tag-version version major",
"build": "webpack",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlauberF/brdom.js.git"
},
"keywords": [
"html",
"dom",
"html generator with javascript",
"generator",
"javascript",
"virtual dom",
"vdom",
"virtual",
"browser",
"jdom",
"json to dom",
"json to html",
"diff",
"powerful json"
],
"author": "Glauber Funez",
"license": "MIT",
"bugs": {
"url": "https://github.com/GlauberF/brdom.js/issues"
},
"homepage": "https://github.com/GlauberF/brdom.js#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"eslint": "^5.15.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"prettier": "1.16.4",
"typescript": "^4.2.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}