forked from motiz88/node-praat-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 939 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
{
"name": "praat-script",
"version": "0.4.2",
"description": "Generate and run Praat scripts from Node.js.",
"main": "dist/index.js",
"scripts": {
"prepublish": "node_modules/.bin/traceur --modules commonjs --dir src dist --source-maps",
"test": "node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/motiz88/node-praat-script"
},
"author": "Moti Zilberman",
"license": "MIT",
"bugs": {
"url": "https://github.com/motiz88/node-praat-script/issues"
},
"homepage": "https://github.com/motiz88/node-praat-script",
"dependencies": {
"rxjs": "^5.0.0-alpha.10",
"tmp": "0.0.25",
"traceur-runtime": "0.0.59"
},
"optionalDependencies": {
"praat": "^6.0.9"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"mocha": "^2.3.4",
"mocha-traceur": "^2.1.0",
"praat": "^6.0.9",
"traceur": "0.0.92"
}
}