-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 928 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
37
38
39
40
{
"name": "@psbrandt/edf-parser",
"version": "0.2.7",
"description": "Edf parser",
"main": "dist/main.js",
"keywords": [
"edf",
"parser"
],
"author": "Yehezkel (Amed) Reyes",
"email": "areyes@nerd.com",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://bitbucket.org/yehezkel/edf-parser.git"
},
"bugs": {
"url": "https://bitbucket.org/yehezkel/edf-parser/issues",
"email": "yejezkel.rp@gmail.com"
},
"directories": {
"example": "sample"
},
"devDependencies": {
"blanket": "^1.2.3",
"memorystream": "^0.3.1",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"parcel-bundler": "^1.12.4"
},
"scripts": {
"test": "mocha tests/ --recursive",
"test-coverage": "nyc --reporter=text mocha tests/ --recursive",
"build": "parcel build src/main.js",
"publish": "npm publish --access public"
},
"nyc": {
"exclude": "tests"
}
}