-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "nexosis-api-client",
"description": "client for interacting with the Nexosis API",
"author": "Nexosis Inc.",
"version": "3.0.0",
"main": "dist/lib/NexosisClient.js",
"module": "dist/es/NexosisClient.js",
"types": "dist/types/NexosisClient.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Nexosis/nexosisclient-js"
},
"homepage": "https://github.com/Nexosis/nexosisclient-js",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Nexosis/nexosisclient-js/issues"
},
"keywords": [
"nexosis",
"machine learning",
"api client"
],
"scripts": {
"prebuild": "rimraf dist",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha --opts ./tests/mocha.opts",
"test:integration": "cross-env NODE_ENV=integration&& npm run test",
"test:coverage": "nyc npm run test",
"build": "tsc && tsc --module commonjs --outDir dist/lib"
},
"dependencies": {
"es6-promise": "^4.1.1",
"isomorphic-fetch": "^2.2.1",
"url-search-params-polyfill": "^2.0.1"
},
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.1",
"chai": "^4.0.2",
"cross-env": "^5.1.1",
"mocha": "^3.4.2",
"nyc": "^11.3.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"talkback": "^1.1.3",
"ts-node": "^4.0.2",
"typescript": "^2.6.2"
}
}