forked from NightlyCommit/twing-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.2 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
{
"name": "@visurel/twing-loader",
"version": "4.0.1",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"test": "npm run build && ts-node node_modules/tape/bin/tape 'test/**/test.ts' | tap-bail | tap-spec",
"test:unit": "ts-node node_modules/tape/bin/tape 'test/unit/**/test.ts' | tap-bail | tap-spec",
"test:integration": "npm run build && ts-node node_modules/tape/bin/tape 'test/integration/**/test.ts' | tap-bail | tap-spec",
"cover": "rimraf .nyc_output coverage && nyc npm run test:unit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepack": "npm run build"
},
"keywords": [
"twig",
"twing",
"webpack",
"webpack-loader"
],
"author": "Nicolas REINE",
"contributors": [
{
"name": "Eric MORAND",
"email": "[email protected]",
"url": "https://github.com/ericmorand"
},
{
"name": "Derek ROTH",
"email": "[email protected]",
"url": "https://github.com/DerekRoth"
}
],
"license": "ISC",
"peerDependencies": {
"twing": "^5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/NightlyCommit/twing-loader"
},
"bugs": {
"url": "https://github.com/NightlyCommit/twing-loader/issues"
},
"homepage": "https://github.com/NightlyCommit/twing-loader#readme",
"description": "Webpack loader for Twig templates, based on Twing.",
"dependencies": {
"crypto-js": "^3.1.9-1",
"loader-utils": "^1.2.3",
"schema-utils": "^2.2.0",
"slash": "^3.0.0"
},
"devDependencies": {
"@types/loader-utils": "^1.1.3",
"@types/luxon": "^1.15.2",
"@types/memory-fs": "^0.3.2",
"@types/schema-utils": "^1.0.0",
"@types/sinon": "^7.0.13",
"@types/tape": "^4.2.33",
"@types/webpack": "^4.39.1",
"coveralls": "^3.0.6",
"html-webpack-plugin": "^3.2.0",
"memory-fs": "^0.4.1",
"module-alias": "^2.2.1",
"nyc": "^14.1.1",
"rimraf": "^2.7.1",
"sinon": "^7.5.0",
"tap-bail": "^1.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"ts-node": "^8.4.1",
"twing": "^5.0.2",
"typescript": "^4.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}