This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "abell-renderer",
"version": "0.4.2",
"description": "JavaScript based Template Engine. Compiles .abell files to .html",
"main": "src/index.js",
"bin": {
"abell-renderer": "bin/abell-renderer.js"
},
"funding": {
"type": "patreon",
"url": "https://patreon.com/saurabhdaware"
},
"scripts": {
"test": "jest",
"update-snapshot": "jest --updateSnapshot",
"example": "node examples/run.js",
"dev": "npm run example main",
"example:cli": "node bin/abell-renderer.js build --input examples/cli-example/src --output examples/cli-example/dist --allow-require",
"cli": "npm run example:cli",
"eslint": "eslint .",
"prettier": "prettier --write \"**/*.js\"",
"prepublishOnly": "npm run eslint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abelljs/abell-renderer.git"
},
"keywords": [
"ejs",
"template-engine",
"template",
"compiler"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/abelljs/abell-renderer/issues"
},
"homepage": "https://github.com/abelljs/abell-renderer#readme",
"dependencies": {
"postcss-selector-parser": "^6.0.2",
"stylis": "^4.0.2",
"acorn": "^8.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"cheerio": "^1.0.0-rc.3",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.4.2",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && eslint . --fix && npm run eslint"
}
}
}