forked from megahertz/twigjs-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "twigjs-loader",
"version": "0.2.2",
"description": "twig.js loader for Webpack",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha ./spec/*.spec.js",
"lint": "eslint ./index.js ./spec/**/*.js"
},
"files": [
"index.js",
"typings/*"
],
"typings": "typings/index.d.ts",
"keywords": [
"twig",
"twig.js",
"template",
"webpack",
"loader"
],
"repository": {
"type": "git",
"url": "git+https://github.com/megahertz/twigjs-loader.git"
},
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": {
"url": "https://github.com/megahertz/twigjs-loader/issues"
},
"homepage": "https://github.com/megahertz/twigjs-loader#readme",
"engines": {
"node": ">=8.0"
},
"peerDependencies": {
"loader-utils": "^1.2.3",
"twig": "1.x"
},
"devDependencies": {
"@types/express": "^4.11.1",
"chai": "*",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"express": "^4.16.3",
"loader-utils": "^1.2.3",
"mocha": "*",
"twig": "*"
}
}