This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 3.04 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
89
90
{
"name": "nquire-it",
"description": "Our aim is to help you explore your world by joining and creating scientific missions. © The Open University (IET-OU)",
"version": "1.3.0+beta",
"author": "Eloy Villasclaras <[email protected]>",
"X-dependencies": {
"jquery": "2.2.4"
},
"X_env_file": "./.env.json",
"bugs": {
"url": "https://github.com/IET-OU/nquire-web-source/issues"
},
"contributors": [
{
"name": "Greg Roach / @fisharebest"
},
{
"name": "Nick Freear / @nfreear"
},
{
"name": "Rich Lovelock / @richlove1"
}
],
"dependencies": {
"angular": "1.5.7",
"angular-gettext": "^2.4.1",
"angular-ui-bootstrap": "^2.5.6",
"angular-ui-router": "0.4.2",
"bootstrap-sass": "^3.4.1",
"font-awesome": "4.7.0",
"textangular": "1.5.16"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-angular-gettext": "^2.4.1",
"grunt-cli": "^1.3.2",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-sass": "^2.1.0",
"live-server": "^1.2.1",
"replace": "^1.1.0",
"simple-git": "^1.113.0"
},
"x-peerDependencies": {
"jquery": "3.3.1",
"grunt-html-angular-validate": "0.6.1",
"grunt-nice-package": "0.10.4"
},
"engines": {
"node": ">= 6.0.0"
},
"files": [
"static/src/js/"
],
"homepage": "http://www.nquire-it.org/",
"keywords": [
"IET-OU",
"OpenUniversity",
"personal inquiry",
"sense-it",
"student"
],
"license": "GPL-3.0+",
"main": "Gruntfile.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/IET-OU/nquire-web-source.git"
},
"scripts": {
"bugs": "ghi | cat",
"build": "grunt && npm run version",
"copy-conf": "cp -n static/src/js/app/config.js.DIST.html static/src/js/app/config.js; cp -n static/src/index.DIST.html static/src/index.html",
"copy-java-pom": "cp -n app/pom.TEMPLATE.xml app/pom.xml",
"cp-compiled": "cp -r app/target/classes/org/greengin/nquireit/ ../nquire-web-compiled/classes/org/greengin/nquireit",
"echo-versions": "printf 'npm: '; npm --version; echo ''; mvn --version",
"java": "mvn compile -f app/pom.xml # Installs dependencies",
"java-security-audit": "mvn org.sonatype.ossindex.maven:ossindex-maven-plugin:audit -f app/pom.xml",
"ps": "ps -af | egrep '(tomcat|httpd)' #| grep -v sh # grep",
"pull": "# git checkout package.json; git pull;\n grunt; npm run version",
"start": "live-server --port=9000 --open=static/src/ --middleware=../../../bin/test-middleware -V # --proxy=static/src/api:",
"test": "grunt test",
"test-all": "npm run version || grunt test",
"compile-java-ci": "mvn compile -f app/pom.xml | tee app/mvn.log | egrep '(ERROR|WARN|INFO)'",
"exit-java-ci": "bash bin/travis-exit-java.sh",
"version": "grunt git:version.json && grunt replace:config+html; # --all",
"weblate-stats": "wget -q -O - http://weblate.iet.open.ac.uk/widgets/nquire-it/-/shields-badge.svg | egrep -o '\\d+%' | tail -n1"
}
}