forked from wasdk/WebAssemblyStudio
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.15 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
{
"name": "webassembly-studio",
"version": "1.0.0",
"description": "Learn, Teach, Work and Play in the WebAssembly Studio",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"build-watch": "webpack --watch --config webpack.config.js",
"dev-server": "webpack-dev-server --config webpack.config.js",
"test": "./node_modules/.bin/jest && npm run tslint",
"clean": "rm -r dist/*",
"tslint": "./node_modules/.bin/tslint -p ."
},
"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)"
]
},
"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.6",
"@types/jszip": "^3.1.3",
"@types/minimatch": "^3.0.2",
"@types/mousetrap": "^1.5.34",
"@types/pako": "^1.0.0",
"@types/react-icons": "^2.2.4",
"@types/react-modal": "^3.1.1",
"@types/xterm": "^2.0.3",
"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.1.10",
"tslint-react": "^3.4.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.8",
"@types/jest": "^22.1.1",
"@types/react": "^16.0.28",
"@types/react-dom": "^16.0.3",
"awesome-typescript-loader": "^3.4.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.1.4",
"react-test-renderer": "^16.2.0",
"source-map-loader": "^0.2.3",
"tslint": "^5.9.1",
"typescript": "^2.7.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0"
}
}