-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.58 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "elm-view-engine",
"version": "2.1.2",
"description": "Renders elm views from a directory of elm modules. This can and is meant to be plugged into Express as a template engine.",
"main": "index.js",
"readme": "README.md",
"homepage": "https://github.com/OzTK/elm-template-engine#readme",
"scripts": {
"clean": "rimraf lib test/*.{js,js.map} src/*.{js,js.map} .nyc_output coverage",
"prebuild": "npm run clean",
"build": "tsc -p .",
"postbuild": "copyfiles -f package.json src/Main.elm.hbs src/elm-package.json README.md CHANGELOG.md LICENSE lib/ && copyfiles -u 1 'src/elm-server-side-renderer/**/*' lib/",
"publish": "npm publish ./lib",
"snyk:t": "snyk test",
"snyk:m": "snyk monitor",
"test:nocover": "mocha --require ts-node/register --require source-map-support/register --bail test/*.ts",
"test": "nyc npm run test:nocover",
"coverage:local": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"bin": "./cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/OzTK/elm-template-engine.git"
},
"keywords": [
"elm",
"nodejs",
"template-engine",
"expressjs",
"view-engine"
],
"author": "Paul Duguet",
"license": "ISC",
"bugs": {
"url": "https://github.com/OzTK/elm-template-engine/issues"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts",
"src/elm-server-side-renderer",
"src/cli.ts"
],
"all": true
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.11.0",
"@types/debug": "0.0.30",
"@types/elm": "^0.12.29",
"@types/express": "^4.0.39",
"@types/handlebars": "^4.0.36",
"@types/mkdirp": "^0.5.1",
"@types/mocha": "^2.2.44",
"@types/ncp": "^2.0.1",
"@types/rimraf": "^2.0.2",
"@types/should": "^11.2.0",
"@types/sinon": "^4.0.0",
"copyfiles": "^1.2.0",
"coveralls": "^3.0.2",
"elm": "^0.18.0",
"express": "^4.16.2",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.2",
"nyc": "^13.3.0",
"should": "^13.1.3",
"sinon": "^4.1.2",
"snyk": "^1.136.1",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.6.1"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.11.0",
"debug": "^3.1.0",
"handlebars": "^4.0.13",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-elm-compiler": "^4.5.0",
"rimraf": "^2.6.2"
}
}