-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "node-blockly",
"version": "1.2.8",
"description": "Blockly for Node.js and Browser as CommonJS module",
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"lib/",
"/*.js",
"!/gulpfile.js",
"index.d.ts"
],
"keywords": [
"blockly",
"commonjs"
],
"dependencies": {
"jsdom": "^15.1.1",
"xmlshim": "^0.2.6"
},
"devDependencies": {
"chai": "^4.2.0",
"gulp": "^4.0.0",
"gulp-beautify": "^3.0.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"mocha": "^6.1.4"
},
"scripts": {
"blockly:upgrade": "git submodule init && git submodule update --recursive --remote",
"prepublish": "rm -rf lib && mkdir lib && gulp build",
"build": "gulp build",
"test": "mocha test/*_test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mo4islona/node-blockly"
},
"author": "Eugene Formanenko <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mo4islona/node-blockly/issues"
},
"homepage": "https://github.com/mo4islona/node-blockly"
}