-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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": "koa-nunjucks-2",
"version": "3.0.2",
"description": "Lightweight Koa middleware for Nunjucks",
"homepage": "https://github.com/strawbrary/koa-nunjucks-2",
"scripts": {
"build": "NODE_ENV=production babel index.js --out-file compiled.js",
"lint": "eslint -c .eslintrc index.js test/index.js",
"prepublish": "npm run build",
"test": "npm run build && mocha test --require babel-core/register"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"bluebird": "^3.1.1",
"lodash.defaults": "^4.0.0",
"lodash.difference": "^4.0.1",
"lodash.merge": "^4.0.1",
"nunjucks": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-3": "^6.5.0",
"chai": "^4.0.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"koa": "^2.2.0",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
},
"main": "compiled.js",
"files": [
"compiled.js"
],
"repository": {
"type": "git",
"url": "git://github.com/strawbrary/koa-nunjucks-2.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/strawbrary/koa-nunjucks-2/issues"
},
"keywords": [
"koa",
"nunjucks",
"view"
],
"engine": {
"node": ">0.11"
}
}