forked from GoogleChromeLabs/wasm-feature-detect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.13 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
{
"name": "wasm-feature-detect",
"version": "1.2.3",
"description": "A small library to detect which features of WebAssembly are supported in your current browser.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build:library": "rollup -c",
"build:readme": "node --experimental-modules ./render-readme.mjs",
"build": "npm run build:library && npm run build:readme && npm run fmt",
"build:website": "npm run build && node genwebsite.js",
"build:website:netlify": "./build.sh",
"fmt": "prettier --write ./{,{src,rollup-plugins}/**/}*.{mjs,js,md}",
"fmt_test": "prettier --check ./{,{src,rollup-plugins}/**/}*.{mjs,js,md}",
"test": "npm run fmt_test && npm run build && node --no-warnings test/index.js"
},
"repository": "GoogleChromeLabs/wasm-feature-detect",
"keywords": [],
"author": "Surma <surma@surma.link>",
"license": "Apache-2.0",
"devDependencies": {
"ejs": "^2.7.1",
"magic-string": "^0.25.4",
"markdown-it": "^10.0.0",
"prettier": "^1.18.2",
"rollup": "^1.20.3",
"rollup-plugin-terser": "^5.1.1",
"wabt": "^1.0.13-nightly.20200430"
}
}