Add initial package.json and linter config

This commit is contained in:
Leonid Logvinov 2017-05-24 11:08:13 +02:00
parent f3292d7bbe
commit f0ceba7f89
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
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": "Official 0x library",
"keywords": [
"0x.js",
"0xproject",
"ethereum",
"tokens",
"exchange"
],
"repository": {
"type": "git",
"url": "https://github.com/0xProject/0x.js"
},
"license": "MIT",
"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"
]
}