-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "jsonmvc-pug-view-loader",
"version": "1.0.0",
"description": "The simplest way to writing a JSON view using pug",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test-on-travis": "./node_modules/.bin/jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsonmvc/pug-view-loader.git"
},
"keywords": [
"jsonmvc",
"pug",
"view",
"ui",
"development"
],
"author": "Constantin Dumitrescu <dum.constantin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsonmvc/pug-view-loader/issues"
},
"homepage": "https://github.com/jsonmvc/pug-view-loader#readme",
"dependencies": {
"pug": "^2.0.0-rc.3"
},
"devDependencies": {
"coveralls": "^2.13.1",
"jest": "^20.0.4"
},
"jest": {
"testRegex": "test/.*\\.js$",
"testEnvironment": "node",
"collectCoverage": true,
"verbose": true,
"moduleDirectories": [
"node_modules",
"src"
]
}
}