-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "express-edge",
"version": "3.0.0",
"description": "Use Edge templating engine with Express",
"main": "dist/index.js",
"scripts": {
"pretest": "rm -rf dist && npm run transpile",
"test": "node_modules/.bin/mocha test/tests.js",
"transpile": "node_modules/babel-cli/bin/babel.js src --out-dir dist",
"eslint": "node_modules/.bin/eslint src/ test/",
"prepublishOnly": "npm run transpile"
},
"repository": {
"type": "git",
"url": "https://github.com/ecrmnn/express-edge"
},
"babel": {
"presets": [
"env"
]
},
"keywords": [
"express",
"express.js",
"adonis",
"edge",
"template",
"templating"
],
"author": {
"name": "Daniel Eckermann",
"email": "[email protected]",
"url": "http://danieleckermann.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecrmnn/express-edge/issues"
},
"homepage": "https://github.com/ecrmnn/express-edge",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.20.2",
"chai": "^4.3.7",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"express": "^4.18.2",
"mocha": "^10.2.0",
"supertest": "^6.3.3"
},
"dependencies": {
"edge.js": "^5.5.1"
}
}