-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "jste",
"version": "0.3.0",
"description": "Fast template engine",
"main": "index.js",
"files": [
"dist",
"engine.js",
"lib"
],
"scripts": {
"build": "webpack && NODE_ENV=production webpack",
"coverage": "nyc --reporter=lcov npm test",
"coverage:html": "nyc --reporter=html npm test",
"publish": "git push && git push --tags",
"test": "ava",
"test:watch": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aristov/jste.git"
},
"keywords": [
"HTML",
"template",
"engine"
],
"author": "Vyacheslav Aristov",
"license": "MIT",
"bugs": {
"url": "https://github.com/aristov/jste/issues"
},
"homepage": "https://github.com/aristov/jste#readme",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"ava": "^5.3.1",
"babel-loader": "^9.1.3",
"chokidar": "^3.5.3",
"nyc": "^15.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=14"
},
"nyc": {
"exclude": [
"dist"
]
}
}