-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@codewitchbella/yoga-wasm",
"description": "WASM bindings for Yoga Layout",
"version": "0.1.0-beta.2",
"license": "MIT",
"contributors": [
"Isabella Skořepová",
"Vincent Riemer"
],
"main": "dist/Yoga.cjs.js",
"module": "dist/Yoga.es.js",
"files": [
"README.md",
"dist"
],
"scripts": {
"clean:bundle": "rimraf dist",
"build:wasm": "docker run --rm -v $(pwd):/src trzeci/emscripten:sdk-tag-1.38.39-64bit ./build.sh",
"prebuild:bundle": "npm run clean:bundle",
"build:bundle": "rollup --silent -c rollup.config.js",
"build": "npm run build:wasm && npm run build:bundle",
"bench": "node tests/run-bench $(find tests/Benchmarks -name '*.js')",
"test": "jest",
"prepare": "npm run build"
},
"devDependencies": {
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.20.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2"
},
"repository": "github:CodeWitchBella/yoga-wasm",
"publishConfig": {
"access": "public"
},
"jest": {
"setupFiles": [
"./tests/jest-setup.js"
],
"testEnvironment": "node",
"testRegex": "Test\\.js$"
},
"dependencies": {}
}