forked from 4minitz/4minitz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 4.31 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "4Minitz",
"version": "v2.0.0-develop",
"4minitz": {
"//": "This is some app specific info",
"4m_branch": "develop",
"4m_commitlong": "98fb5545433a2d106dcc35d6ac71678bbdf77c31",
"4m_commitshort": "98fb5545",
"4m_releasedate": "2020-03-07"
},
"description": "Simply the best free webapp for taking meeting minutes. ;-)",
"main": "4minitz.html",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"eslint": "eslint client/** imports/** server/**",
"eslint:fix": "eslint --fix client/** imports/** server/**",
"mdlint": "markdownlint -- ./*.md ./doc/**/*.md || true",
"test": "npm run test:unit",
"test:ci": "npm run test:unit && npm run test:end2end:headless",
"test:unit": "node ./node_modules/mocha/bin/mocha \"./tests/unit/**/*.test.js\" --compilers js:babel-register --require tests/unit/babel && npm run test:fixtures:seed-minutes:unit",
"test:end2end:ldap": "node tests/support/ldap-server.js",
"test:end2end:meteor": "meteor run --port 3100 --settings ./settings-test-end2end.json",
"test:end2end:server": "node tests/support/end2end-server.js",
"test:end2end:headless": "chimp .meteor/chimp_config_headless.js --ddp=http://localhost:3100 --mocha --path=tests/end2end/ -- $TEST_FILES",
"test:end2end:once": "chimp .meteor/chimp_config.js --ddp=http://localhost:3100 --mocha --path=tests/end2end/",
"test:end2end:watch": "chimp .meteor/chimp_config.js --ddp=http://localhost:3100 --mocha --path=tests/end2end/ --watch",
"test:end2end:watchheadless": "chimp .meteor/chimp_config_headless.js --ddp=http://localhost:3100 --mocha --path=tests/end2end/ --watch",
"test:fixtures:seed-minutes:unit": "node ./node_modules/mocha/bin/mocha --recursive tests/performance/fixtures/tests/ --compilers js:babel-register --require tests/performance/fixtures/tests/babel",
"test:program:priority-analyzer": "node ./node_modules/mocha/bin/mocha --recursive programs/priority-analyzer/tests/ --compilers js:babel-register --require programs/priority-analyzer/tests/babel",
"test:i18n": "node tests/i18n/test_i18n_resources.js",
"progam:priority-analyzer": "node ./node_modules/babel-cli/bin/babel-node.js --presets=es2015,stage-3 programs/priority-analyzer/priority-analyzer.js",
"fixtures:seed-minutes": "node ./node_modules/babel-cli/bin/babel-node.js --presets=es2015,stage-3 tests/performance/fixtures/insertMeetingSeries.js",
"postinstall": "node programs/postInstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4minitz/4minitz.git"
},
"author": "4Minitz Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/4minitz/4minitz/issues"
},
"homepage": "https://www.4minitz.com",
"dependencies": {
"@babel/runtime": "7.0.0-beta.55",
"arrive": "^2.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.24.0",
"bcrypt": "^3.0.6",
"bootstrap": "^3.3.7",
"bootstrap-material-design": "^0.5.10",
"eonasdan-bootstrap-datetimepicker": "github:eonasdan/bootstrap-datetimepicker#4.17.47",
"fibers": "^2.0.0",
"fs-extra": "^5.0.0",
"git-rev-sync": "^1.9.1",
"jquery": "^3.3.1",
"jquery-ui": "^1.12.1",
"jquery-ui-touch-punch": "^0.2.3",
"ldapjs": "^1.0.2",
"lodash": "^4.17.10",
"md5-file": "^3.2.3",
"meteor-node-stubs": "^0.3.3",
"moment": "^2.22.2",
"mongo-uri": "^0.1.2",
"mongodb": "^3.0.1",
"mongodb-extended-json": "^1.10.0",
"node-cron": "^1.2.1",
"node-getopt": "^0.2.3",
"path": "^0.12.7",
"randomstring": "^1.1.5",
"semver": "^5.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"clone": "^2.1.1",
"eslint": "^4.15.0",
"faker": "^4.1.0",
"inject-loader": "^4.0.1",
"js-yaml": "^3.13.1",
"markdownlint-cli": "^0.15.0",
"mocha": "^4.1.0",
"mock-meteor-universe-i18n": "^0.2.1",
"npm-license-crawler": "^0.1.5",
"proxyquire": "^1.8.0",
"sinon": "^4.1.6",
"sinon-chai": "^2.14.0",
"tree-kill": "^1.2.0",
"underscore": "^1.8.3",
"xtend": "^4.0.1"
}
}