-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.17 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
{
"name": "@cycle-robot-drivers/sound",
"version": "1.1.2",
"description": "A Cycle.js driver for playing sounds using HTMLAudioElement",
"author": "Michael Jae-Yoon Chung",
"license": "MIT",
"bugs": "https://github.com/mjyc/cycle-robot-drivers/issues",
"repository": "https://github.com/mjyc/cycle-robot-drivers/tree/master/sound",
"main": "lib/cjs/index.js",
"module": "lib/es6/index.js",
"types": "lib/cjs/index.d.ts",
"dependencies": {
"@cycle-robot-drivers/action": "^1.0.0",
"@cycle/run": "5.2.0",
"xstream": "11.10.0"
},
"devDependencies": {
"@cycle/state": "^1.2.0",
"@cycle/time": "^0.19.0",
"@types/node": "^11.9.4"
},
"scripts": {
"build:cjs": "../node_modules/.bin/tsc --project tsconfig.json --module commonjs --outdir lib/cjs",
"build:es6": "../node_modules/.bin/tsc --project tsconfig.json --module es6 --outDir lib/es6",
"build:doc": "../node_modules/.bin/markdox ./src/* -o api.md && sed -i '1s/^.*$/\\n# API/' api.md && sed -i 's/^#.*/#&/' api.md && cat ../docs/readmes/${PWD##*/}.md api.md > README.md && rm api.md",
"test": "../node_modules/.bin/jest --config ../jest.config.common.js --rootDir ./"
}
}