-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 946 Bytes
/
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
{
"name": "dust-loader",
"version": "1.3.0",
"description": "dustjs loader module for webpack",
"author": {
"name": "Valentin Agachi",
"url": "http://agachi.name/"
},
"repository": {
"type": "git",
"url": "https://github.com/avaly/dust-loader.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepush": "npm test",
"test": "npm run lint && rm -f node_modules/dust-loader && ln -s .. node_modules/dust-loader && ava"
},
"files": [
"index.js"
],
"devDependencies": {
"ava": "^0.19.0",
"babel-eslint": "^10.0.1",
"dustjs-linkedin": "^2.7.5",
"eslint": "^5.15.3",
"husky": "^0.13.2",
"memory-fs": "^0.4.1",
"webpack": "^4.29.6"
},
"peerDependencies": {
"dustjs-linkedin": "^2.7.5",
"webpack": ">= 2.0.0"
},
"license": "MIT",
"ava": {
"files": [
"tests/*.js"
]
},
"dependencies": {
"loader-utils": "^1.2.3"
}
}