forked from twigjs/twig.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"author": "John Roepke <[email protected]> (http://john.sh/)",
"name": "twig",
"description": "JS port of the Twig templating language.",
"version": "1.14.0",
"homepage": "https://github.com/twigjs/twig.js",
"licenses": [
{
"type": "BSD-2-Clause",
"url": "https://raw.github.com/twigjs/twig.js/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/twigjs/twig.js.git"
},
"main": "twig.js",
"engines": {
"node": ">=6.0"
},
"bin": {
"twigjs": "./bin/twigjs"
},
"scripts": {
"preversion": "npm test && git diff --exit-code --quiet",
"postversion": "git push origin master && git push origin master --tags",
"test": "npm run build && mocha -r should",
"build-node": "webpack",
"build-browser": "cross-env WEBPACK_ENV=browser webpack",
"build": "npm run build-node && npm run build-browser"
},
"dependencies": {
"minimatch": "3.0.x",
"locutus": "^2.0.5",
"walk": "2.3.x"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"mocha": "^4.1.0",
"should": "^13.2.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"tokenizer": "1.1.x",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.0.3"
},
"browser": {
"fs": false
}
}