-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "detect-is-on-glitch",
"version": "1.0.1",
"description": "Check if your code is executing on Glitch",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshuatz/detect-is-on-glitch.git"
},
"homepage": "https://github.com/joshuatz/detect-is-on-glitch",
"author": {
"name": "Joshua Tzucker",
"url": "https://joshuatz.com/?utm_source=package"
},
"keywords": [
"glitch.com",
"glitchdotcom"
],
"bin": {
"detect-is-on-glitch": "dist/cli.js",
"isglitch": "dist/cli.js"
},
"main": "dist/index",
"types": "dist/index.d.ts",
"scripts": {
"make-dist": "shx mkdir dist && cd dist && shx mkdir browser",
"prebuild": "shx rm -rf dist && yarn make-dist && shx rm 'src/**/*.d.ts' || shx true",
"build-node": "tsc --project emit.tsconfig.json",
"build-web": "parcel build src/index.js --target browser --out-dir dist/browser --out-file glitch-detect.min.js --global detectIsOnGlitch --experimental-scope-hoisting",
"build": "yarn build-node && yarn build-web"
},
"files": [
"dist/"
],
"devDependencies": {
"@types/node": "^14.0.26",
"parcel": "^1.12.4",
"shx": "^0.3.2",
"typescript": "^3.9.7"
},
"dependencies": {
"commander": "^5.1.0"
},
"browserslist": [
"since 2017-06"
]
}