generated from Richienb/node-module-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.45 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
60
61
62
63
64
65
66
67
68
{
"name": "scratcher",
"version": "1.0.4",
"description": "Scratch extension development tooling.",
"repository": "https://github.com/Richienb/scratcher.git",
"author": "Richie Bendall <[email protected]>",
"license": "MIT",
"bin": "cli.js",
"files": [
"cli.js",
"utils"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "xo",
"test": "xo && ava"
},
"keywords": [
"scratch",
"build",
"watch",
"environment",
"cli",
"tool",
"development"
],
"dependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"chalk": "^4.1.0",
"exit-hook": "^2.2.0",
"get-port": "^5.1.1",
"meow": "^8.0.0",
"ora": "^5.1.0",
"path-exists": "^4.0.0",
"rollup": "^2.34.1",
"rollup-plugin-serve": "^1.1.0",
"scratch-gui": "SheepTester/scratch-gui#ca7b69cbae7f37870f05d6ccc1d1d32584918980",
"update-notifier": "^5.0.1"
},
"devDependencies": {
"@types/scratch-env": "^3.0.0",
"ava": "^3.13.0",
"eslint-config-richienb": "^0.5.0",
"execa": "^5.0.0",
"xo": "^0.35.0"
},
"xo": {
"extends": "richienb",
"overrides": [
{
"files": "fixtures/index.ts",
"rules": {
"no-undef": "off"
}
}
]
}
}