-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "@waltz-controls/tango-rest-client",
"version": "1.5.1",
"description": "JS client for Tango REST API",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"watch": {
"build": "{src,test}/*.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"dist"
],
"repository": "git://github.com/waltz-controls/tango-rest-client.git",
"keywords": [
"tango-controls",
"tango-rest",
"rest-api",
"waltz",
"waltz-controls"
],
"author": "Ingvord",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/waltz-controls/tango-rest-client/issues"
},
"homepage": "https://github.com/waltz-controls/tango-rest-client#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"rollup": "^1.29.0"
},
"dependencies": {
"@waltz-controls/eventbus": "^1.2.1",
"rxjs": "^6.5.5"
}
}