-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·91 lines (91 loc) · 2.83 KB
/
package.json
File metadata and controls
executable file
·91 lines (91 loc) · 2.83 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "remme-client",
"namespace": "remme",
"version": "1.0.3",
"description": "REMME external package",
"main": "./packages/remme/dist/index.js",
"scripts": {
"postinstall": "./node_modules/.bin/lerna bootstrap",
"test": "./node_modules/.bin/mocha ./tests --timeout=10000",
"publish": "npm run bootstrap && ./node_modules/.bin/gulp && ./node_modules/.bin/lerna publish",
"publish-dev": "npm run bootstrap && ./node_modules/.bin/gulp && ./node_modules/.bin/lerna publish --npm-tag dev",
"bootstrap": "./node_modules/.bin/gulp prepublish && ./node_modules/.bin/lerna bootstrap",
"build": "npm run bootstrap && ./node_modules/.bin/gulp",
"build_all": "npm run bootstrap && ./node_modules/.bin/gulp build",
"watch": "./node_modules/.bin/gulp watch",
"tests": "npm run bootstrap && npm run build && npm test",
"generate-docs": "node_modules/.bin/gulp build_docs",
"generate-protobufs": "node_modules/.bin/gulp protobuf-compile"
},
"keywords": [
"Remme",
"Javascript",
"API"
],
"repository": {
"type": "git",
"url": "https://github.com/Remmeauth/remme-client-js.git"
},
"homepage": "https://github.com/Remmeauth/remme-client-js",
"author": {
"name": "REMME",
"url": "remme.io"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"axios": "^0.18.0",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-match": "^1.1.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cli": "^2.0.1",
"gulp-protobufjs": "^1.3.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-streamify": "^1.0.2",
"gulp-tslint": "^8.1.3",
"gulp-typedoc": "^2.2.0",
"gulp-uglify": "^3.0.0",
"karma": "^3.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-browserify": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-typescript-preprocessor": "^0.3.1",
"lerna": "^2.11.0",
"mocha": "^5.1.1",
"natives": "^1.1.6",
"protobufjs": "^6.7.3",
"ts-node": "^6.0.3",
"tsify": "^4.0.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.8.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"cbor": "^4.0.0",
"crypto": "^1.0.1",
"docdash": "^0.4.0",
"gulp-babel": "^7.0.1",
"jsdoc": "^3.5.5"
}
}