-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 971 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
28
29
30
31
32
33
{
"name": "chaiscript",
"version": "1.0.0",
"description": "JavaScript port of ChaiScript, an easy to use embedded scripting language.",
"main": "index.js",
"scripts": {
"prepublishOnly": "emmake make build",
"test": "mocha",
"prestart": "emmake make dist/html/index.html",
"start": "http-server dist/html -o",
"emscripten": "emmake make",
"predeploy": "emmake make OPTIMIZATION=-O2 dist/html/index.html",
"deploy": "gh-pages -d dist/html"
},
"homepage": "https://github.com/RobLoach/ChaiScript.js",
"repository": "github:RobLoach/ChaiScript.js",
"bugs": {
"url": "https://github.com/RobLoach/ChaiScript.js/issues"
},
"license": "BSD-3-Clause",
"author": "Rob Loach (https://robloach.net)",
"files": [
"dist/wasm/chaiscript.js",
"dist/chaiscript.js",
"index.js"
],
"devDependencies": {
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"milligram": "^1.3.0",
"mocha": "^5.2.0"
}
}