-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
27 lines (27 loc) · 944 Bytes
/
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
{
"name": "function-laboratory",
"version": "1.0.0",
"description": "<script src=\"blockly/blockly_compressed.js\"></script> <script src=\"blockly/blocks_compressed.js\"></script> <script src=\"blockly/msg/js/es.js\"></script> <script src=\"functions.js\"></script>",
"main": "src/functions.js",
"scripts": {
"build": "rm index.html || true && cat index.md >> index.html",
"start": "npm run build && google-chrome index.html",
"test": "mocha-headless-chrome -f test/test.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PalumboN/function-laboratory.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PalumboN/function-laboratory/issues"
},
"homepage": "https://github.com/PalumboN/function-laboratory#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1",
"mocha-headless-chrome": "^2.0.3",
"sinon": "^10.0.0"
}
}