-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "create-reactwasm-app",
"version": "1.2.3",
"description": "Create Emscripten Web Assembly App from cli",
"main": "bin/main.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/@hasangenc0"
},
"bin": {
"create-reactwasm-app": "bin/main.js"
},
"scripts": {
"build": "tsc",
"publish": "npm publish --access=public",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasangenc0/create-reactwasm-app.git"
},
"keywords": [
"webassembly"
],
"author": {
"name": "Hasan Genc",
"email": "hasangencx@hotmail.com"
},
"license": "ISC OR GPL-3.0",
"bugs": {
"url": "https://github.com/hasangenc0/create-reactwasm-app/issues"
},
"homepage": "https://github.com/hasangenc0/create-reactwasm-app#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"jest": "^24.9.0",
"mocha": "^6.2.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"fs-extra": "^8.1.0",
"ncp": "^2.0.0"
}
}