-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 KB
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
{
"name": "ssmd",
"version": "1.0.8",
"description": "Speech Synthesis Markdown (SSMD) is a lightweight alternative syntax for Speech Synthesis Markup Language (SSML)",
"main": "index.js",
"scripts": {
"test-unit": "NODE_ENV=test mocha './src/**/*.spec.js'",
"test-watch": "NODE_ENV=test mocha --watch --extension md --extension js './src/**/*.spec.js'",
"test": "npm run test-unit",
"publish": "npm publish"
},
"keywords": [
"SSMD",
"SSML",
"markdown"
],
"dependencies": {
"simple-text-parser": "^2.0.0",
"lodash": "^4.17.15",
"ramda": "^0.26.1",
"ssml-builder": "^0.4.3",
"xml-formatter": "^1.1.0"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^11.1.0"
},
"author": "Fabien Lenoir",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fabien88/ssmd.git"
},
"bugs": {
"url": "https://github.com/fabien88/ssmd/issues"
},
"homepage": "https://github.com/fabien88/ssmd#readme"
}