-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.85 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
{
"name": "@creatdevsolutions/service",
"version": "0.1.0",
"publishConfig": {
"registry": "https://registry.npmjs.com",
"access": "public"
},
"description": "Node Implementation for Service Lib from Embedded Enterprises",
"main": "build/cjs/index.js",
"module": "build/module/index.js",
"types": "build/types/index.d.ts",
"private": false,
"files": [
"build"
],
"scripts": {
"build": "npm run lint && npm run build:ts",
"build:clean": "rm -rf build && npm run build",
"build:ts": "tsc -p tsconfig.module.json && tsc -p tsconfig.cjs.json",
"build:docs": "typedoc --out docs --readme README.md --target esnext --theme default --mode file src --ignoreCompilerErrors",
"lint": "tslint -c tslint.json src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/creatdevsolutions/service.git"
},
"author": "Johann Wagner, Martin Koppehel",
"license": "MIT",
"bugs": {
"url": "https://github.com/creatdevsolutions/service/issues"
},
"homepage": "https://github.com/creatdevsolutions/service#readme",
"dependencies": {
"@creatdevsolutions/bundesstrasse": "^18.10.18",
"lodash": "^4.17.10",
"logplease": "^1.2.14"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@material-ui/core": "^3.1.1",
"@material-ui/icons": "^3.0.1",
"@types/lodash": "^4.14.117",
"@types/node": "^10.12.2",
"awesome-typescript-loader": "^5.2.1",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"webpack": "^4.20.2"
}
}