-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 2.06 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
{
"name": "auto-ngtemplate-loader",
"version": "3.1.2",
"description": "Auto require AngularJS 1.x templates in Webpack style",
"main": "index.js",
"repository": "https://github.com/yashdalfthegray/auto-ngtemplate-loader",
"bugs": {
"url": "https://github.com/yashdalfthegray/auto-ngtemplate-loader/issues"
},
"author": "YashdalfTheGray <[email protected]>",
"license": "MIT",
"keywords": [
"webpack",
"loader",
"ngtemplate",
"angularjs",
"angular",
"templates"
],
"scripts": {
"test": "ava",
"clean": "git clean -xfd",
"linter": "eslint src examples index.js webpack.*.js",
"one-directive": "webpack --config examples/01-one-directive/webpack.config.js",
"many-directives": "webpack --config examples/02-many-directives/webpack.config.js",
"multiple-directives": "webpack --config examples/03-multiple-directives-one-file/webpack.config.js",
"separated-templates": "webpack --config examples/04-separated-templates/webpack.config.js",
"absolute-paths": "webpack --config examples/05-absolute-paths/webpack.config.js",
"prettier": "prettier --write src/**/*.js examples/**/*.js index.js webpack.*.js",
"prepare": "husky install",
"lint-staged": "lint-staged",
"publish-dryrun": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz"
},
"dependencies": {
"html-loader": "~4.2.0",
"loader-utils": "~3.2.0",
"lodash": "~4.17.20",
"ngtemplate-loader": "~2.1.0",
"var-validator": "0.0.3"
},
"devDependencies": {
"@babel/core": "~7.20.7",
"@babel/preset-env": "~7.20.2",
"ava": "~5.0.1",
"babel-loader": "~8.2.2",
"eslint": "~8.30.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-prettier": "~4.2.1",
"husky": "~8.0.1",
"lint-staged": "~13.1.0",
"prettier": "~2.7.1",
"webpack": "~5.75.0",
"webpack-cli": "~5.0.0"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
]
}
}