-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 KB
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
{
"name": "@play-co/scooby",
"version": "0.1.0",
"description": "WebGL GUI texture monitoring tool for web content",
"main": "dist/esm/TextureMonitor.js",
"module": "dist/esm/TextureMonitor.js",
"scripts": {
"clean": "rimraf {temp,dist}",
"start": "rollup -cw",
"lint": "npx eslint --ext .js --ext .ts src --ignore-path .gitignore --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"prebuild": "npm run clean",
"build": "npm run build:npm && npm run build:chrome",
"build:npm": "rollup -c",
"build:chrome": "rollup -c rollup.config.chrome.js && node tools/index.js && rimraf temp",
"watch:npm": "rollup -c -w",
"preversion": "npm run clean && npm run lint",
"postversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Goodboy-Digital/scooby.git"
},
"author": "Goodboy Digital",
"license": "ISC",
"bugs": {
"url": "https://github.com/Goodboy-Digital/scooby/issues"
},
"homepage": "https://github.com/Goodboy-Digital/scooby#readme",
"pre-commit": [
"lint"
],
"devDependencies": {
"@goodboydigital/eslint-config": "^1.7.3",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"eslint": "^7.13.0",
"node-sass": "^8.0.0",
"pre-commit": "^1.2.2",
"rimraf": "3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.5"
},
"dependencies": {
"typed-signals": "^2.1.0"
}
}