-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "blocklike",
"version": "1.0.7",
"description": "Bridging the gap between block programming and JavaScript",
"files": [
"dist/*"
],
"scripts": {
"start": "webpack serve",
"watch": "webpack --progress --watch --config webpack.config.js",
"lint:scripts": "./node_modules/.bin/eslint scripts/*.js --fix --config .eslintrc.js",
"lint:tests": "./node_modules/.bin/eslint test/*.js --fix --config .eslintrc.js",
"lint:examples": "./node_modules/.bin/eslint example/*/*.html --fix --config .eslintrc-examples.js",
"test": "webpack --progress --config webpack.config.test.js && mocha --require test/setup.js --exit test/~~out.js && rm test/~~out.js",
"full": "webpack --progress --config webpack.config.js",
"mini": "webpack --progress --config webpack.config-mini.js && node scripts/mini.js",
"docs": "npx jsdoc dist/blocklike-*.*.*.js --destination ./docs --template node_modules/minami --readme Docs-README.md",
"build": "npm run test && npm run full && npm run mini && npm run docs",
"version": "node scripts/version.js & npm run build && git add ."
},
"keywords": [
"blocklike",
"block",
"blocklike.org",
"javascript",
"scratch",
"code.org",
"blockly"
],
"author": {
"name": "Ron Ilan",
"url": "http://www.ronilan.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/eslint-parser": "^7.14.5",
"@babel/eslint-plugin": "^7.14.5",
"assert": "^2.0.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jsdoc": "^3.6.6",
"jsdom": "^16.6.0",
"minami": "^1.2.3",
"mocha": "^9.2.0",
"replace-in-file": "^6.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ronilan/BlockLike.git"
}
}