-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
88 lines (88 loc) · 2.48 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": "opensensemap",
"version": "3.5.0",
"dependencies": {
"angular-i18n": "^1.6.7",
"node": "^10.19.0"
},
"devDependencies": {
"@sensebox/eslint-config-sensebox": "^1.1.0",
"bardjs": "^0.1.8",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"connect-modrewrite": "^0.10.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^4.19.0",
"eslint-plugin-angular": "^4.1.0",
"grunt": "~1.4.1",
"grunt-autoprefixer": "~3.0.4",
"grunt-bower-install": "~1.6.0",
"grunt-concurrent": "~3.0.0",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-compress": "2.0.0",
"grunt-contrib-concat": "~2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-cssmin": "~4.0.0",
"grunt-contrib-htmlmin": "~3.1.0",
"grunt-contrib-imagemin": "~4.0.0",
"grunt-contrib-uglify": "~5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-gitinfo": "^0.1.9",
"grunt-json-minify": "^1.1.0",
"grunt-karma": "^4.0.2",
"grunt-newer": "~1.3.0",
"grunt-ng-annotate": "^3.0.0",
"grunt-replace": "^2.0.2",
"grunt-rev": "~0.1.0",
"grunt-svgmin": "~6.0.1",
"grunt-usemin": "~3.1.1",
"karma": "^6.3.17",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-html-reporter": "^0.2.7",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"load-grunt-tasks": "~5.1.0",
"mocha": "^9.2.2",
"serve-static": "^1.14.2",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"standard-version": "^9.3.2",
"time-grunt": "~1.4.0",
"unique-names-generator": "^4.7.1"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"serve": "grunt serve --target=dev",
"commit": "git-cz",
"test": "grunt test",
"test-build": "bower install && grunt testBuild --target=testBuild",
"build": "bower install && grunt build --target=build",
"docker-build": "docker build -t osem .",
"docker-run": "docker run -p 8000:8000 -it --rm osem bash",
"release": "standard-version",
"lint": "eslint \"app/scripts/**/*.js\"",
"lint:fix": "eslint --fix \"app/scripts/**/*.js\""
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"languages": [
"de",
"en"
],
"i18n": [
"de_DE",
"en_US"
]
}