forked from mo4islona/node-blockly
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "node-blockly",
"version": "1.0.35",
"description": "Blockly for Node.js and Browser as CommonJS module",
"main": "index.js",
"directories": {
"test": "test"
},
"keywords": [
"blockly",
"commonjs"
],
"dependencies": {
"jsdom": "^11.3.0",
"xmlshim": "git://github.com/eyz/node-xmlshim.git#be6220b53809b2c5a84be25c17e56bc4a12ba411"
},
"devDependencies": {
"chai": "^4.1.2",
"gulp": "^3.8.11",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"mocha": "^4.0.1"
},
"scripts": {
"blockly:upgrade": "git submodule init && git submodule update --recursive --remote",
"prepublish": "rm -rf lib && mkdir lib && 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"
}