forked from squirrellyjs/squirrelly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.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
{
"name": "squirrelly",
"version": "6.1.1",
"description": "A simple yet powerful modern template engine that works in the browser, in Node.js, and with ExpressJS.",
"main": "./dist/squirrelly.min.js",
"homepage": "https://squirrelly.js.org",
"scripts": {
"test": "standard 'src/*.js' && mocha",
"coverage": "nyc report --reporter=text-lcov | codacy-coverage",
"build:runtime:dev": "webpack --env.target=browser",
"build:runtime:prod": "webpack --env.target=browser --env.production",
"build:runtime": "npm run build:runtime:dev && npm run build:runtime:prod",
"build:lib:dev": "webpack",
"build:lib:prod": "webpack --env.production",
"build:lib": "npm run build:lib:dev && npm run build:lib:prod",
"build": "npm run build:lib && npm run build:runtime",
"format": "standard --fix 'src/*.js'"
},
"keywords": [
"template",
"engine",
"squirrelly",
"html",
"expressjs",
"sqrl",
"pug",
"handlebars",
"swig",
"filters",
"helpers"
],
"author": "Ben Gubler <[email protected]> (https://bengubler.com)",
"license": "MIT",
"bin": {
"squirrelly": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nebrelbug/squirrelly.git"
},
"bugs": {
"url": "https://github.com/nebrelbug/squirrelly/issues"
},
"dependencies": {},
"devDependencies": {
"mocha": "^5.1.1",
"standard": "^12.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"standard": {
"ignore": [
"test/*.js",
"dist/*.js"
]
},
"browser": {
"fs": false
}
}