forked from justjake/quickjs-emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 KB
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
{
"name": "quickjs-emscripten",
"version": "0.2.0",
"main": "dist/quickjs.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/justjake/quickjs-emscripten"
},
"files": [
"dist/*.js",
"dist/*.ts",
"dist/*.map"
],
"scripts": {
"prepare": "yarn make-release && yarn build && mocha ./dist/quickjs.test.js",
"update-quickjs": "git subtree pull --prefix=quickjs --squash git@github.com:ldarren/QuickJS.git mod",
"make-debug": "make DEBUG=1 -j 8",
"make-release": "which emcc && make clean && make -j 8",
"clean": "make clean",
"build": "tsc",
"doc": "typedoc --plugin typedoc-plugin-markdown ts",
"test": "yarn make-debug && mocha",
"prettier": "prettier --write ./*.json ./**/*.ts ./*.js ./*.md",
"run-n": "yarn make-debug && ./build/wrapper/native/test.exe"
},
"devDependencies": {
"@types/emscripten": "^1.38.0",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.4",
"mocha": "^7.0.0",
"prettier": "^1.19.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.4",
"typedoc": "^0.15.8",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.4"
}
}