This repository was archived by the owner on May 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 KB
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
{
"name": "cantus",
"version": "1.0.2",
"description": "It's a simple JavaScript library for accessing a Cantus API server.",
"keywords": ["music", "musicology", "mediaeval", "Gregorian chant", "manuscript"],
"homepage": "https://github.com/CANTUS-Project/cantus-js",
"bugs": {"url": "https://github.com/CANTUS-Project/cantus-js/issues"},
"license": "GPL-3.0",
"author": {"name": "Christopher Antila",
"email": "christopher@antila.ca",
"url": "http://christopher.antila.ca/"},
"repository": {"type": "git", "url": "https://github.com/CANTUS-Project/cantus-js.git"},
"devDependencies": {
"babelify": "7.3.x",
"babel-jest": "12.1.x",
"babel-preset-es2015": "6.9.x",
"browserify": "13.0.x",
"eslint": "2.11.x",
"eslint-plugin-react": "5.1.x",
"jest-cli": "12.1.x",
"jsdoc": "3.4.x",
"minifyify": "7.3.x"
},
"browserify": {
"transform": [["babelify", {"sourceType": "module"}]]
},
"scripts": {
"build": "build_for_deployment",
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": ["es6", "js"],
"moduleFileExtensions": ["js", "json", "es6"],
"testDirectoryName": "tests"
},
"babel": {
"presets": ["es2015"],
"comments": true,
"compact": false
}
}