-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 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
{
"name": "@bbc/stt-align-node",
"version": "1.4.3",
"description": "",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"test": "jest",
"test:watch": "jest --watchAll",
"example": "node example-usage/example-usage-align-stt.js",
"build": "babel src -d build",
"build:lib": "webpack --config ./webpack.config.lib.js --mode production",
"build:demo": "webpack --mode production",
"publish:public": "npm run build && /bin/cp -rf package.json build/ && /bin/cp -rf README.md build/README.md && npm publish build --access public",
"publish:dry:run": "npm run build && /bin/cp -rf package.json build/ && /bin/cp -rf README.md build/README.md && npm publish build --dry-run --access public",
"deploy:ghpages": "npm run build:demo && gh-pages -d demo"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"jest": "^25.0.0",
"gh-pages": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"babel-loader": "^8.0.6",
"difflib": "^0.2.4",
"everpolate": "0.0.3",
"number-to-words": "^1.2.4"
}
}