forked from google/blockly-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.13 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
{
"name": "blockly-samples",
"version": "0.0.0",
"description": "Samples for using Blockly",
"author": "Blockly Team",
"license": "Apache-2.0",
"scripts": {
"audit:fix": "lerna run audit:fix && lerna bootstrap",
"boot": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"clean:node": "lerna clean --yes",
"deploy:prepare": "npm run deploy:prepare:plugins && npm run deploy:prepare:examples && gulp predeploy",
"deploy:prepare:examples": "cd examples && npm run predeploy",
"deploy:prepare:plugins": "npm run clean && lerna run build && lerna run predeploy",
"deploy": "npm run deploy:prepare && gulp deploy",
"deploy:upstream": "npm run deploy:prepare && gulp deployUpstream",
"format": "prettier --write .",
"format:check": "prettier --check .",
"license": "gulp checkLicenses",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "npm run boot",
"test": "lerna run test",
"publish:prepare": "gulp prepareForPublish",
"publish:manual": "gulp publishManual",
"publish:force": "gulp forcePublish",
"publish:unpublishedOnly": "gulp publishFromPackage",
"publish:checkVersions": "gulp checkVersions",
"test:ghpages:beta": "gulp testGhPagesBeta",
"test:ghpages": "gulp testGhPages"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@eslint/eslintrc": "^2.1.2",
"@eslint/js": "^8.49.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.49.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.8.2",
"gh-pages": "^3.1.0",
"globals": "^13.22.0",
"gulp": "^4.0.2",
"gulp-header": "^2.0.9",
"http-server": "^14.1.1",
"js-green-licenses": "^1.1.0",
"lerna": "^7.4.1",
"@lerna/legacy-package-management": "^7.4.1",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"showdown": "^2.1.0"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}