-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 949 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
41
42
{
"name": "bossajs",
"version": "0.9.0",
"main": "index.js",
"author": "Sports Performance Tracking <engineering@sportsperformancetracking.com>",
"repository": {
"type": "git",
"url": "github:sptgps/bossajs"
},
"license": "BSD-3-Clause",
"os": [ "darwin", "win32" ],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true,
"node": true
}
}
]
]
},
"scripts": {
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"install": "node-gyp rebuild",
"test": "mocha --require @babel/register --require @babel/polyfill tests/**/*.spec.js"
},
"dependencies": {
"nan": "^2.12.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}