ruffle/web/packages/core/package.json

33 lines
963 B
JSON
Raw Normal View History

{
"name": "ruffle-core",
"version": "0.1.0",
"description": "Core bindings for Ruffle",
"license": "(MIT OR Apache-2.0)",
"private": true,
"main": "./pkg/index.js",
"types": "./pkg/index.d.ts",
"files": ["pkg/"],
"scripts": {
"build": "npm run build:wasm && npm run build:ts",
"build:ts": "tsc -d",
"build:wasm": "wasm-pack build ../../ --out-dir packages/core/pkg",
2020-11-12 23:47:40 +00:00
"test": "mocha -r esm -r ts-node/register test/**.ts"
2020-05-17 22:37:33 +00:00
},
"devDependencies": {
2020-11-12 23:47:40 +00:00
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
2020-11-12 23:47:40 +00:00
"chai": "^4.2.0",
"eslint": "^7.13.0",
2020-11-12 23:47:40 +00:00
"esm": "^3.2.25",
"mocha": "^8.0.1",
2020-11-12 23:47:40 +00:00
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/source-map": "^0.5.2"
}
}