-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.68 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
{
"name": "emcc-loader",
"description": "Webpack loader that compiles some c/c++ file to bitcode and links bitcode into a wasm/asm.js using Emscripten.",
"version": "0.0.5",
"author": "Kosaki Mezumona <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "rollup -c",
"start": "tsc --noEmit -w",
"clean": "rimraf lib",
"lint": "eslint --format stylish \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"prepare": "npm run lint && npm run build"
},
"jest": {
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*Test.ts"
]
},
"homepage": "https://github.com/mezum/emcc-loader#readme",
"repository": "https://github.com/mezum/emcc-loader.git",
"bugs": {
"url": "https://github.com/mezum/emcc-loader/issues"
},
"keywords": [
"webpack",
"loader",
"emscripten",
"c",
"c++",
"cpp",
"cxx"
],
"files": [
"package.json",
"README.md",
"index.js",
"lib"
],
"dependencies": {
"loader-utils": "^2.0.0",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"@types/loader-utils": "^2.0.1",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.11.5",
"@types/source-map": "^0.5.7",
"@types/webpack": "^4.41.22",
"eslint": "^7.10.0",
"eslint-config-airbnb-typescript-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.28.2",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^4.0.3"
}
}