-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
64 lines (64 loc) · 1.85 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
{
"name": "wasmos",
"version": "0.0.1",
"description": "A set of runtime tools for WebAssembly and AssemblyScript",
"main": "dist/index.js",
"scripts": {
"test:jest": "jest",
"test:as": "asp --reporter=SummaryTestReporter",
"asp": "asp",
"test": "npm-run-all test:jest test:as",
"check": "tsc -p tsconfig.ts.json --noEmit",
"bootstrap": "lerna bootstrap && npm run linkDev",
"clean": "lerna clean -y",
"clean:soft": "lerna exec \"rm -rf node_modules/**/node_modules\" ",
"linkDev": "lerna exec \"ldev\"",
"ci": "npm-run-all clean bootstrap check ci:test test:as",
"ci:test": "npm run test:jest -- -i || npm run test:jest -- -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebAssemblyOS/wasmos.git"
},
"keywords": [
"WebAssembly",
"AssemblyScript",
"loader",
"runtime"
],
"author": "Willem Wyndham",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebAssemblyOS/wasmos/issues"
},
"homepage": "https://github.com/WebAssemblyOS/wasmos#readme",
"devDependencies": {
"@types/assembly": "file:./types",
"@types/fs-extra": "^5.0.5",
"@types/node": "^11.9.5",
"@types/webassembly-js-api": "0.0.2",
"@wasmos/utils": "file:./utils",
"as-pect": "github:jtenner/as-pect",
"browserfs": "git:github.com/jvilk/browserfs",
"dropbox": "~4.0.9",
"jest": "^24.1.0",
"jsdom-worker": "^0.1.0",
"node-fetch": "^2.3.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"typescript": "^3.4.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
},
"dependencies": {
"@types/filesystem": "0.0.28",
"@types/jest": "^24.0.11",
"@types/shelljs": "^0.8.4",
"lerna": "^3.13.4",
"shelljs": "^0.8.3",
"shx": "^0.3.2"
}
}