forked from wasdk/WebAssemblyStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.39 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "webassembly-studio",
"version": "1.0.0",
"description": "Learn, Teach, Work and Play in the WebAssembly Studio",
"main": "index.js",
"scripts": {
"build": "webpack --mode production && npm run templates",
"build-watch": "webpack --watch --mode development",
"dev-server": "npm run templates && webpack-dev-server",
"test": "webpack --mode production && node bin/check-bundle-size.js && npm run jest && npm run tslint",
"jest": "jest",
"coverage": "jest --coverage",
"clean": "rm -r dist/*",
"tslint": "tslint -p .",
"templates": "node bin/bundle-templates.js > dist/templates.js"
},
"jest": {
"setupFiles": [
"<rootDir>/test-shim.js",
"<rootDir>/test-setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/test-preprocessor.js"
},
"testMatch": [
"**/tests/**/**/**.spec.(ts|tsx|js)"
],
"collectCoverageFrom": [
"src/**/**.(ts|tsx|js)"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wasdk/WebAssemblyStudio.git"
},
"author": "Mozilla Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/wasdk/WebAssemblyStudio/issues"
},
"homepage": "https://github.com/wasdk/WebAssemblyStudio",
"dependencies": {
"@types/flux": "^3.1.7",
"@types/jszip": "^3.1.3",
"@types/minimatch": "^3.0.3",
"@types/mousetrap": "^1.6.0",
"@types/pako": "^1.0.0",
"@types/react-icons": "^2.2.5",
"@types/react-modal": "^3.1.2",
"@types/xterm": "^3.0.0",
"cassowary": "0.0.2",
"flux": "^3.1.3",
"jszip": "^3.1.5",
"minimatch": "^3.0.4",
"monaco-editor": "^0.10.1",
"mousetrap": "^1.6.1",
"pako": "^1.0.6",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-icons": "^2.2.7",
"react-modal": "^3.3.1",
"tslint-react": "^3.5.1"
},
"devDependencies": {
"@types/enzyme": "^3.1.9",
"@types/jest": "^22.1.4",
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"awesome-typescript-loader": "^3.5.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.2",
"react-test-renderer": "^16.2.0",
"source-map-loader": "^0.2.3",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
}
}