-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "tools-for-field-linguistics",
"description": "A collection of scripts and recipes for fieldlinguistics",
"version": "0.1.0",
"homepage": "https://github.com/cesine/ToolsForFieldLinguistics",
"author": {
"name": "cesine",
"email": "[email protected]"
},
"authors": [
"cesine <[email protected]>",
"hisakonog <[email protected]>",
"vronvali <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/cesine/ToolsForFieldLinguistics.git"
},
"bugs": {
"url": "https://github.com/cesine/ToolsForFieldLinguistics/issues"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "lib/ToolsForFieldLinguistics",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"dist": "browserify src/javascript/ToolsForFieldLinguistics.js -o dist/tools-for-field-linguistics.js",
"docs": "rm -rf docs/javascript; jsdoc ./src/javascript/*.js ./src/javascript/connectedgraph/*.js ./src/javascript/data-manipulation/*.js -d ./docs/javascript",
"lint": "eslint src/javascript test/javascript",
"test": "jasmine 'test/javascript/**/**/*spec.js'"
},
"devDependencies": {
"browserify": "^16.2.3",
"eslint": "^5.13.0",
"jasmine": "^3.3.1",
"jsdoc": "^3.5.5"
},
"keywords": [],
"dependencies": {}
}