-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "smallstache",
"version": "0.5.3",
"description": "Lightweight template engine similar to Mustache/Handlebars.",
"keywords": [
"smallstache",
"template",
"templates",
"mustache"
],
"main": "dist/smallstache.js",
"scripts": {
"build": "npm run bundle && npm run compress",
"bundle": "mkdirp ./dist && babel ./src/Smallstache.js > ./dist/smallstache.js",
"compress": "cd ./dist && uglifyjs ./smallstache.js --compress --mangle --output smallstache.min.js --source-map \"filename='./smallstache.js.map',url='./smallstache.js.map'\" && cd ../",
"test": "jest --coverage",
"lint": "eslint src tests"
},
"devDependencies": {
"@babel/cli": "7.19.x",
"@babel/core": "7.20.x",
"@babel/plugin-transform-modules-umd": "7.18.x",
"@babel/preset-env": "7.20.x",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "29.3.x",
"eslint": "8.28.x",
"jest": "29.3.x",
"mkdirp": "1.0.x",
"npm-check-updates": "^16.4.1",
"regenerator-runtime": "0.13.x",
"uglify-js": "3.17.x"
},
"files": [
"dist",
"examples"
],
"repository": "https://github.com/macie/smallstache.git",
"bugs": "https://github.com/macie/smallstache/issues",
"author": "Maciej Żok",
"license": "MIT",
"runkitExampleFilename": "./examples/usage-node.js"
}