-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
64
65
66
67
68
69
{
"name": "shaven",
"version": "2.1.0",
"description": "Shaven is a simple DOM building utility and template engine based on JsonML",
"homepage": "https://shaven.ad-si.com",
"type": "module",
"keywords": [
"template",
"DOM building",
"JsonML"
],
"bugs": {
"url": "https://github.com/ad-si/shaven/issues"
},
"license": "ISC",
"author": "Adrian Sieber <[email protected]> (https://adriansieber.com)",
"main": "source/library/server.js",
"browser": "build/browser.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ad-si/shaven.git"
},
"scripts": {
"transpile": "babel source/library --out-dir build",
"buildHTML": "mustache ./package.json source/templates/index.mustache > site/index.html",
"build": "npm run transpile && webpack && npm run buildHTML",
"unit-tests": "ava --fail-fast test/node.js test/jsdom.js",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run lint && npm run unit-tests",
"prepublish-only": "npm test && npm run build"
},
"directories": {
"example": "examples",
"test": "test"
},
"eslintConfig": {
"extends": "eslint-config-javascript",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
}
},
"dependencies": {
"escape-html": "~1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"ava": "^3.15.0",
"babel-loader": "^8.2.2",
"brace": "^0.11.1",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-javascript": "^1.3.0",
"file-loader": "^6.2.0",
"javascript-styleguide": "^1.0.0",
"jscs": "^3.0.7",
"jsdom": "^16.4.0",
"json-loader": "^0.5.7",
"mustache": "^4.1.0",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
}
}