-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.26 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "jspeech",
"version": "0.1.1",
"description": "Create JSpeech Grammar Formats (JSGF).",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": "git@github.com:tur-nr/node-jspeech.git",
"bugs": {
"url": "https://github.com/tur-nr/node-jspeech/issues"
},
"author": "Christopher Turner <turner296@gmail.com>",
"license": "MIT",
"scripts": {
"build": "gulp",
"lint": "xo",
"pretest": "yarn run lint",
"test": "jest",
"prepublish": "yarn run build"
},
"devDependencies": {
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-register": "^6.23.0",
"coveralls": "^2.12.0",
"del": "^2.2.2",
"eslint": "^3.17.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jest": "^19.0.2",
"run-sequence": "^1.2.2",
"xo": "^0.17.1"
},
"xo": {
"next": true,
"semicolon": true,
"overrides": [
{
"files": "test/**/*.js",
"envs": [
"node",
"jest"
]
}
]
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}