forked from LivingLogic/LivingApps.Javascript.LivingAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.39 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
{
"name": "livingsdk",
"version": "0.3.0",
"description": "livingapps api for javascript (nodjs and browser) written in typescript",
"main": "dist/es2015/livingsdk.js",
"types": "dist/es2015/livingsdk.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/LivingLogic/LivingApps.Javascript.LivingAPI.git"
},
"scripts": {
"test": "sh shellscripts/build.sh && mocha -r source-map-support/register dist/test/**/*.test.js",
"build": "sh shellscripts/build.sh",
"karma": "sh shellscripts/build.sh && karma start"
},
"author": "Living Logic AG",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"blueimp-md5": "^2.10.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"chai": "^4.1.2",
"express": "^4.15.4",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.0.1",
"karma-typescript": "^3.0.13",
"mocha": "^3.5.2",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^5.0.2",
"source-map-support": "^0.5.12",
"ts-node": "^6.1.0",
"typescript": "^2.9.1"
}
}