-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "pynab.js",
"version": "2.0.0",
"description": "Typescript API interface for the PyNab Nabaztag revival pcb",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datagutt/pynab.js.git"
},
"keywords": [],
"author": "Thomas Lekanger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/datagutt/pynab.js/issues"
},
"homepage": "https://github.com/datagutt/pynab.js#readme",
"devDependencies": {
"typescript": "^3.7.5"
},
"dependencies": {
"@types/node": "^13.7.0",
"@types/qs": "^6.9.0",
"abab": "^2.0.3",
"color-rgba": "^2.1.1",
"isomorphic-fetch": "^2.2.1",
"qs": "^6.9.1",
"rimraf": "^3.0.1",
"tslint": "^6.0.0"
}
}