forked from FieldDB/FieldDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.89 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
{
"name": "fielddb",
"version": "5.241.07-rc0",
"description": "An offline/online field database which adapts to its user's terminology and I-Language",
"homepage": "https://github.com/FieldDB/FieldDB/issues/milestones?state=closed",
"repository": {
"type": "git",
"url": "git://github.com/FieldDB/FieldDB.git"
},
"bugs": {
"url": "https://github.com/FieldDB/FieldDB/issues"
},
"keywords": [
"fielddb",
"client"
],
"contributors": [
"cesine <[email protected]>",
"trisapeace <[email protected]>",
"hisakonog <[email protected]>",
"Emmy Cathcart <[email protected]>",
"Tobin Skinner <[email protected]>",
"Yuliya Manyakina <[email protected]>",
"Elise <[email protected]>",
"Josh Horner <[email protected]>",
"gretchenmcc <[email protected]>",
"jrwdunham <[email protected]>",
"ghazan <[email protected]>",
"Fieldlinguist <[email protected]>",
"zazoo <[email protected]>",
"louisa-bielig <[email protected]>",
"lingllama <[email protected]>",
"geekrax <[email protected]>",
"Yogurt1206 <[email protected]>",
"Pablo Duboue <[email protected]>",
"Oriana <[email protected]>"
],
"engines": {
"node": ">4.2.2"
},
"dependencies": {
"atob": "^2.1.2",
"bcryptjs": "^2.4.3",
"browserify-mime": "^1.2.9",
"btoa": "^1.1.2",
"diacritics": "^1.2.3",
"directory-tree": "^1.1.0",
"md5": "^2.0.0",
"q": "^1.4.1",
"recordmp3js": "^0.5.0",
"textgrid": "^2.2.0",
"x2js": "^3.1.1"
},
"optionalDependancies": {
"d3": "^3.5.8",
"jsdom": "^7.0.2",
"memory": "0.0.3"
},
"devDependencies": {
"browserify": "^16.5.0",
"docdash": "^1.1.1",
"jasmine": "^2.6.0",
"jsdoc": "^3.6.3",
"jslint": "^0.12.1",
"mkdirp": "^0.5.1",
"sinon": "^2.3.2"
},
"main": "api/fielddb.js",
"scripts": {
"docs": "jsdoc api/**/*.js -d docs/javascript --template node_modules/docdash",
"test": "jasmine tests/**/**-spec.js",
"test:jasmineAllTestsErrorWorkaround": "echo y | bash scripts/jasmine_all_tests_workaround.sh",
"lint": "jslint api/**/*.js || echo 'TODO switch to eslint'",
"lint:api": "jslint api/**/*.js",
"lint:test": "jslint api/**/*spec.js",
"build": "yes n | ./scripts/set_fielddb_version.sh; browserify api/fielddb.js -o fielddb.js",
"build:angular-client": "bash scripts/build_fielddb_angular_core.sh || echo 'this client is deprecated and might not build much longer'",
"build:backbone-client": "bash scripts/build_fielddb_minified.sh",
"build:min": "echo TODO",
"build:ci": "npm run lint && npm run test:jasmineAllTestsErrorWorkaround && npm test && npm run build && npm run build:min && npm run docs && npm run build:backbone-client",
"optionalPostinstall": "bower link || exit 0"
},
"license": "Apache-2.0"
}