-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "vanilla-templates",
"version": "2.0.2",
"description": "Template parsing with jQuery and Handlebars",
"main": "Templates.js",
"module": "./dist/Templates.js",
"author": "Hans Christian Reinl <info@drublic.de> (https://drublic.de/)",
"repository": {
"type": "git",
"url": "https://github.com/drublic/Templates.git"
},
"scripts": {
"start": "concurrently \"yarn js:watch\" \"yarn test:watch\"",
"build": "yarn test && yarn js",
"lint": "eslint",
"js": "webpack --mode=production",
"js:watch": "webpack -p",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@babel/preset-env": "^7.10.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^5.2.0",
"eslint": "^7.1.0",
"hogan.js": "^3.0.2",
"jest-cli": "^26.0.1",
"webpack": "^4.43.0"
},
"devDependencies": {
"webpack-cli": "^3.3.11"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 11"
]
}