-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
48 lines (48 loc) · 1.7 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
{
"name": "creepjs",
"version": "1.0.0",
"description": "creepy device and browser fingerprinting",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch:dev": "npx rollup --config rollup.config.js -w & nodemon -d 3 ./server.js localhost 8000",
"build:dev": "npx rollup --config rollup.config.js",
"minify:js": "javascript-obfuscator public/creep.js -o docs/creep.js --identifier-names-generator \"mangled-shuffled\"",
"autoprefixer": "postcss public/style.css -u autoprefixer -o public/style.prefix.css",
"minify:css": "cleancss -o docs/style.min.css public/style.prefix.css",
"build:css": "yarn autoprefixer && yarn minify:css",
"build:js": "yarn build:dev && yarn minify:js",
"build": "yarn build:js & yarn build:css",
"postbuild": "echo 'build complete 🔥'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abrahamjuliot/CreepJS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/abrahamjuliot/CreepJS/issues"
},
"homepage": "https://github.com/abrahamjuliot/CreepJS#readme",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"autoprefixer": "^10.4.1",
"axios": "^0.27.2",
"clean-css-cli": "^4.3.0",
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"express": "^4.18.1",
"javascript-obfuscator": "^4.0.0",
"nodemon": "^2.0.19",
"postcss": "^8.4.5",
"postcss-cli": "^8.3.1",
"rollup": "^2.77.0",
"terser": "^5.14.2",
"typescript": "^4.7.4"
}
}