-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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": "crypto-observe",
"description": "A reminder for crypto increase or decrease",
"version": "1.0.3",
"main": "build/CryptoObserve.js",
"keywords": [
"cryptocurrency",
"reminder",
"danger",
"crypto"
],
"author": {
"name": "rjmasikome",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/rjmasikome/crypto-observe/issues"
},
"homepage": "https://github.com/rjmasikome/crypto-observe#readme",
"directories": {
"test": "test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjmasikome/crypto-observe.git"
},
"scripts": {
"start": "ts-node example/",
"build": "npm run compile",
"clean": "rm -rf build",
"precompile": "npm run clean",
"compile": "tsc --pretty",
"lint": "tslint lib/ test/",
"lint:fix": "tslint --fix lib/ test/",
"test": "mocha --exit --require ts-node/register 'test/**/*.ts'",
"dev": "nodemon index.ts"
},
"dependencies": {
"@types/node": "^8.5.1",
"debug": "^3.1.0",
"ms": "^2.1.1",
"request": "^2.83.0"
},
"devDependencies": {
"eslint": "^4.13.1",
"mocha": "^4.0.1",
"nodemon": "^1.13.3",
"ts-node": "^4.0.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}