-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.77 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
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
{
"name": "rpd-c4-lab",
"config": {
"codeclimate_token": "ededa0c572bd7d90bd93f248d5510d2ff8f6d4a658f1349590a8c2e5d49497cc"
},
"version": "0.35.1",
"description": "web interface to create software architecture diagrams",
"main": "src/index.js",
"scripts": {
"test": "jest --config jest.json",
"test:watch": "jest --config jest.json --watch --coverage false",
"codeclimate": "CODECLIMATE_REPO_TOKEN=$npm_package_config_codeclimate_token codeclimate-test-reporter < coverage/lcov.info",
"build": "webpack --config webpack.build.config.js",
"serve": "webpack-dev-server --config webpack.dev.config.js --watch --open",
"start": "npm-run-all --parallel serve 'test:watch'",
"lint": "tslint 'src/**/*.ts'"
},
"keywords": [
"diagrams",
"software",
"architecture"
],
"author": "Ryan Davis <[email protected]>",
"license": "ISC",
"dependencies": {
"@octokit/rest": "^15.12.1",
"angular": "^1.6.8",
"angular-animate": "^1.6.8",
"angular-marked": "^1.2.2",
"angular-ui-bootstrap": "^2.5.6",
"angular-ui-codemirror": "^0.3.0",
"angular-ui-router": "^1.0.0-alpha0",
"angulartics": "^1.5.0",
"angulartics-google-analytics": "^0.4.0",
"codemirror": "^5.33.0",
"lodash": "^4.17.13",
"lz-string": "^1.4.4",
"ng-file-upload": "^12.2.13",
"ng-redux": "^3.5.2",
"path-browserify": "^0.0.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sexpr-plus": "^7.0.0",
"ts-md5": "^1.2.2",
"typescript-fsa": "^2.5.0",
"typescript-fsa-reducers": "^0.4.5",
"typescript-fsa-redux-saga": "^1.1.0",
"viz.js": "^1.4.1",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"@types/angular": "^1.6.40",
"@types/jest": "^22.0.1",
"@types/lodash": "^4.14.92",
"@types/lz-string": "^1.3.32",
"@types/redux-logger": "^3.0.5",
"angular-mocks": "^1.6.8",
"babel-core": "^6.24.0",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.9.0",
"codeclimate-test-reporter": "^0.5.0",
"css-loader": "^0.28.8",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.4",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jasmine-core": "^2.4.1",
"jest": "^22.0.4",
"npm-run-all": "^4.1.2",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.1",
"ts-jest": "^22.0.1",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "^3.1.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.0",
"webpack-merge": "^4.1.1"
}
}