-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
38 lines (38 loc) · 944 Bytes
/
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
{
"name": "rustify",
"description": "Rust WebAssembly transform for Browserify",
"repository": "browserify/rustify",
"version": "1.1.0",
"scripts": {
"start": "bankai start example/inline",
"start:external": "bankai start example/external",
"build": "mkdir -p dist/ && browserify -t ./ example/inline.js -o dist/bundle.js",
"build:external": "mkdir -p dist/ && browserify -t ./ example/external.js -o dist/bundle.js",
"test": "standard && node test/index.js"
},
"dependencies": {
"acorn-node": "^1.3.0",
"falafel": "^2.1.0",
"map-limit": "0.0.1",
"mkdirp": "^0.5.1",
"through2": "^2.0.3"
},
"devDependencies": {
"bankai": "^9.0.1",
"browserify": "^14.5.0",
"standard": "^10.0.3",
"tape": "^4.8.0"
},
"standard": {
"ignore": [
"test/*/**.js"
]
},
"keywords": [
"browserify",
"rust",
"node",
"inline"
],
"license": "Apache-2.0"
}