-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
{
"name": "sweatmap",
"description": "SweatMap takes in a series of UTF-8 strings and maps them to UTF-8 strings that are as small as possible while still being unique.",
"version": "0.3.7",
"author": {
"name": "Benjamin Solum",
"email": "[email protected]",
"url": "http://soluml.com"
},
"preferGlobal": true,
"keywords": [
"sweat",
"sweatmap",
"sweat map",
"sweatmap javascript",
"sweatmap.js",
"minify",
"obfuscate",
"optimize",
"css"
],
"main": "node/sweatmap.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=8.16.0"
},
"repository": {
"type": "git",
"url": "git://github.com/soluml/sweatmap.git"
},
"scripts": {
"start": "NODE_ENV=production webpack",
"lint": "eslint node/**/*.js test/**/*.js",
"test": "mocha"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
">0.2%",
"not dead",
"ie 11"
],
"dependencies": {
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"babel-loader": "^8.2.2",
"eslint": "^7.26.0",
"mocha": "^10.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
}
}