forked from abrahamjuliot/creepjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "creepjs",
"version": "1.0.0",
"description": "creepy device and browser fingerprinting",
"main": "creep.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"autoprefixer": "postcss style.css -u autoprefixer -o style.prefix.css",
"cleancss": "cleancss -o docs/style.min.css style.prefix.css",
"rollup": "rollup creep.js --file docs/creep.js --format iife",
"build:css": "npm run autoprefixer && npm run cleancss",
"build": "npm run rollup & npm run 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": {
"express": "^4.17.1",
"rollup": "^2.28.2"
},
"devDependencies": {
"autoprefixer": "^10.0.1",
"clean-css-cli": "^4.3.0",
"postcss": "^8.1.1",
"postcss-cli": "^8.0.0"
}
}