-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "run-wasm",
"version": "0.0.1",
"description": "Run WASM based code executions in the browser easily",
"private": true,
"keywords": [
"wasm",
"editor",
"react",
"code execution"
],
"repository": "https://github.com/slipHQ/run-wasm.git",
"author": "Kenneth Cassel <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@types/jest": "^27.0.2",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"eslint": "7.25.0",
"eslint-config-galex": "2.15.2",
"eslint-config-next": "^11.0.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"prettier": "2.2.1",
"typescript": "^4.4.3"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:esm": "lerna run build:esm",
"build:cjs": "lerna run build:cjs",
"test": "lerna run test",
"check-types": "lerna run check-types",
"install:clean": "rm -rf node_modules && rm yarn.lock && yarn",
"format": "prettier --write --list-different --ignore-path .gitignore .",
"lint": "eslint --cache . --ignore-path .gitignore --ignore-pattern 'lib/*'",
"prepare": "husky install",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint",
"*.{js,jsx,ts,tsx,css,json,md}": "yarn format"
}
}