-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "streams-api",
"version": "0.0.1",
"description": "A service for managing javascript textile operations",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist -s",
"clean": "rm -rf node_modules && rm package-lock.json",
"examples": "npm run build && node dist/examples.js",
"test": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/openworklabs/streams-api.git"
},
"author": "openworklabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/openworklabs/streams-api/issues"
},
"homepage": "https://github.com/openworklabs/streams-api#readme",
"dependencies": {
"@textile/js-http-client": "^0.2.19"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.4",
"babel-loader": "^8.0.6",
"jest": "^24.8.0"
}
}