Merge pull request #1 from 0xProject/initial-package

Add initial package.json and linter config
This commit is contained in:
Leonid 2017-05-24 11:22:56 +02:00 committed by GitHub
commit 90b3d6bc10
2 changed files with 28 additions and 0 deletions

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "0x.js",
"version": "0.0.0",
"description": "A javascript library for interacting with the 0x protocol",
"keywords": [
"0x.js",
"0xproject",
"ethereum",
"tokens",
"exchange"
],
"repository": {
"type": "git",
"url": "https://github.com/0xProject/0x.js"
},
"license": "Apache 2.0",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"tslint-config-0xproject": "^0.0.0"
}
}

5
tslint.json Normal file
View File

@ -0,0 +1,5 @@
{
"extends": [
"tslint-config-0xproject"
]
}