-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1006 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
{
"name": "@pennions/jet",
"version": "2.0.1",
"description": "A semantic templating engine inspired by doT.js",
"files": [
"dist",
"src",
"docs"
],
"main": "./dist/jet.js",
"module": "./dist/jet.es.js",
"scripts": {
"docs": "npm run build && vite",
"build": "rollup --config rollup.config.js",
"minify": "uglifyjs --compress --mangle --output dist/jet.min.js dist/jet.js",
"test": "jest --collectCoverage",
"lint": "npx prettier -w src/**",
"deploy": "npm run build && npm run minify",
"publish": "npm run deploy && npm publish --access public"
},
"author": "Jelmer Veen <https://github.com/pennions>",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@rollup/plugin-commonjs": "^21.0.1",
"jest": "^27.4.7",
"jest-environment-jsdom": "^27.4.7",
"prettier": "2.5.1",
"rollup": "^2.67.0",
"uglify-js": "^3.15.0",
"vite": "^4.0.0",
"@types/jest": "^29.2.4"
}
}