forked from chroma-sdk/chroma-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 980 Bytes
/
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
{
"name": "@pastez/chromajs",
"version": "0.1.5",
"description": "JavaScript client for the Razer Chroma REST API",
"repository": {
"type": "git",
"url": "git+https://github.com/Pastez/chroma-js/chroma-js.git"
},
"bugs": {
"url": "https://github.com/Pastez/chroma-js/issues"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"isomorphic-fetch": "2.2.1"
},
"devDependencies": {
"nyc": "10.3.2",
"rimraf": "2.6.1",
"typescript": "^3.3.1",
"tslint": "^5.12.1"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "tslint src/**/*.ts{,x}",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"homepage": "https://github.com/Pastez/chroma-js/chroma-js#readme",
"directories": {
"test": "test"
},
"keywords": [
"Razer",
"Chroma",
"SDK",
"Rest",
"API"
]
}