-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
54
55
56
57
58
59
{
"name": "risejs",
"version": "1.1.4",
"description": "Rise SDK built in Node.js",
"main": "dist/es5/index.js",
"types": "dist/es5/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/risevision/rise-js-sdk"
},
"scripts": {
"package": "shx rm -rf ./dist/; tsc --outDir dist/es5 --target es5 -d && webpack",
"prepublish": "shx rm -rf ./dist/ && npm run package",
"docs": "shx rm -rf docs ; typedoc -exclude \"**/apis/**\" --theme node_modules/typedoc-clarity-theme/bin --excludePrivate --disableOutputCheck --hideGenerator --module commonjs --mode file --tsconfig ./tsconfig.json --out docs/ src/; touch docs/.nojekyll "
},
"keywords": [
"rise",
"vision",
"sdk",
"crypto",
"currency",
"risevision",
"cryptocurrency",
"alt",
"coin",
"altcoin"
],
"bugs": {
"url": "https://github.com/risevision/rise-js-sdk/issues"
},
"license": "MIT",
"readmeFilename": "README.md",
"author": "Andrea Baccega <vekexasia+crypto@gmail.com>",
"dependencies": {
"axios": "^0.16.2"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.29",
"@types/sinon": "^2.3.1",
"assert": "1.4.1",
"chai": "^4.0.2",
"gulp": "^3.9.1",
"mocha": "^3.4.2",
"pug": "^2.0.0-rc.2",
"shx": "^0.2.2",
"sinon": "^2.3.2",
"ts-loader": "^2.1.0",
"ts-node": "^3.0.6",
"tslib": "^1.7.1",
"typedoc": "^0.7.1",
"typedoc-clarity-theme": "^1.1.0",
"typedoc-plugin-internal-external": "^1.0.9",
"typescript": "~2.3.4",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.6.1"
}
}