Skip to content

Commit 1b640ec

Browse files
committed
Prep for tests
1 parent 8c122f6 commit 1b640ec

File tree

2 files changed

+41
-9
lines changed

2 files changed

+41
-9
lines changed

.eslintrc.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "eslint:recommended",
3+
"env": {
4+
"node": true
5+
},
6+
"rules": {
7+
8+
}
9+
}

package.json

+32-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
11
{
2-
"name": "schema-client",
3-
"version": "1.2.9",
4-
"description": "Schema API Client for NodeJS",
5-
"author": "Schema",
6-
"main": "./lib/client.js",
7-
"repository": {
8-
"type": "git",
9-
"url": "https://github.com/schemaio/schema-node-client.git"
10-
}
2+
"name": "schema-client",
3+
"version": "1.2.9",
4+
"description": "Schema API Client for NodeJS",
5+
"keywords": [
6+
"schema",
7+
"ecommerce",
8+
"payments",
9+
"api"
10+
],
11+
"homepage": "https://github.com/schemaio/schema-node-client",
12+
"author": "Schema",
13+
"repository": {
14+
"type": "git",
15+
"url": "git://github.com/schemaio/schema-node-client.git"
16+
},
17+
"bugs:": "https://github.com/schemaio/schema-node-client/issues",
18+
"engines": {
19+
"node": ">= v0.10.0"
20+
},
21+
"main": "lib/client.js",
22+
"devDependencies": {
23+
"chai": "~3.4.1",
24+
"eslint": "^1.10.3",
25+
"mocha": "~2.3.4"
26+
},
27+
"dependencies": {
28+
"bluebird": "^3.1.1"
29+
},
30+
"license": "MIT",
31+
"scripts": {
32+
"test": "mocha"
33+
}
1134
}

0 commit comments

Comments
 (0)