forked from justjake/quickjs-emscripten
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "quickjs-emscripten",
"version": "0.21.0",
"main": "dist/index.js",
"sideEffects": false,
"license": "MIT",
"keywords": [
"eval",
"quickjs",
"vm",
"interpreter",
"runtime",
"safe",
"emscripten",
"wasm"
],
"repository": {
"type": "git",
"url": "https://github.com/justjake/quickjs-emscripten"
},
"files": [
"c/interface.c",
"dist/**/*",
"!dist/*.test.js",
"!dist/*.tsbuildinfo"
],
"scripts": {
"prepack": "yarn build",
"tarball": "make build/quickjs-emscripten.tgz",
"prepare": "yarn prettier-check && yarn tarball && yarn test && yarn test-dist && yarn smoketest-node",
"clean": "make clean",
"tsc": "node_modules/.bin/tsc",
"build": "make dist && npx webpack",
"doc": "typedoc",
"test": "TS_NODE_TYPE_CHECK=false mocha",
"test-dist": "cd dist && TS_NODE_TYPE_CHECK=false mocha --require source-map-support/register *.test.js",
"test-fast": "TS_NODE_TYPE_CHECK=false TEST_NO_ASYNC=true mocha",
"test-all": "TEST_LEAK=1 yarn test && yarn test-dist",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"update-quickjs": "git subtree pull --prefix=quickjs --squash [email protected]:bellard/quickjs.git master",
"smoketest-node": "yarn tarball && ./scripts/smoketest-node.sh",
"smoketest-cra": "yarn tarball && ./scripts/smoketest-website.sh"
},
"devDependencies": {
"@types/emscripten": "^1.38.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.4",
"copy-webpack-plugin": "^11.0.0",
"fs-extra": "^10.0.1",
"markserv": "^1.17.4",
"mocha": "7.2.0",
"node-fetch-commonjs": "^3.1.1",
"prettier": "2.5.1",
"process": "^0.11.10",
"source-map-support": "^0.5.16",
"ts-node": "^10.7.0",
"typedoc": "^0.22.0",
"typedoc-plugin-inline-sources": "^1.0.1",
"typedoc-plugin-markdown": "^3.11.12",
"typescript": "^4.5.5"
},
"dependencies": {
"browser": "^0.2.6",
"quickjs-emscripten-sync": "^1.5.1",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}