-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 927 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 927 Bytes
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
{
"name": "ether",
"version": "0.0.1",
"description": "A template based render engine for JavaScript",
"main": "dist/index.js",
"dependencies": {
"lodash": "^4.17.21",
"ramda": "^0.28.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"babel-cli": "^6.26.0",
"babel-loader": "^8.2.3",
"jest": "^27.5.1",
"nanoid": "^3.3.1",
"uglify-js": "^3.15.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"test": "jest",
"build": "sh ./scripts/build.sh",
"build:webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/berakoc/ether.git"
},
"keywords": [
"render",
"engine",
"javascript",
"template-based"
],
"author": "Bera Koc",
"license": "MIT",
"bugs": {
"url": "https://github.com/berakoc/ether/issues"
},
"homepage": "https://github.com/berakoc/ether#readme"
}