-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.63 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
{
"name": "wasm-ffi",
"version": "0.3.0",
"description": "A lightweight FFI library for JS/WebAssembly",
"keywords": [
"WebAssembly",
"wasm",
"ffi",
"rust",
"AssemblyScript"
],
"author": "Sterling DeMille <sterlingdemille+npm@gmail.com>",
"license": "MIT",
"repository": "https://github.com/DeMille/wasm-ffi",
"homepage": "https://demille.github.io/wasm-ffi/docs/whatlang/",
"main": "./dist/wasm-ffi.bundle.js",
"module": "./src/index.js",
"unpkg": "dist/wasm-ffi.browser.min.js",
"scripts": {
"bundle:dist": "webpack --progress --display-modules",
"bundle:test": "webpack --config webpack.dev.config.js --progress --display-modules",
"bundle": "npm run bundle:dist && npm run bundle:test && cp ./dist/wasm-ffi.browser.js ./docs/wasm-ffi.browser.js",
"dev:server": "webpack-dev-server --config webpack.dev.config.js --content-base ./tests --port 8000 --no-inline",
"dev:watch": "webpack --watch --progress",
"dev": "concurrently --kill-others \"npm run dev:server\" \"npm run dev:watch\"",
"test": "mocha ./tests/tests.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha ./tests/tests.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"mocha-lcov-reporter": "^1.3.0",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}