This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.56 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
{
"name": "vitrail",
"version": "0.4.5",
"description": "User agent for the Cantus API. NOTE: the dependencies and everything are only used when running Vitrail with Node, which only happens when running the tests.",
"keywords": ["music", "musicology", "mediaeval", "Gregorian chant", "manuscript"],
"homepage": "https://github.com/CANTUS-Project/vitrail",
"bugs": {"url": "https://github.com/CANTUS-Project/vitrail/issues"},
"license": "AGPL-3.0",
"author": {"name": "Christopher Antila",
"email": "christopher@antila.ca",
"url": "https://christopher.antila.ca/"},
"repository": {"type": "git", "url": "https://github.com/CANTUS-Project/vitrail.git"},
"dependencies": {
"history": "^4.4.0",
"localforage": "1.4.2",
"nuclear-js": "1.3.0",
"react": "15.4.0",
"react-bootstrap": "0.30.x",
"react-dom": "15.4.0",
"react-router": "^3.0.0"
},
"devDependencies": {
"babelify": "7.3.0",
"babel-jest": "12.1.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"browserify": "13.0.1",
"enzyme": "2.4.1",
"eslint": "^2.10.2",
"eslint-plugin-react": "^5.1.1",
"jasmine-enzyme": "1.1.x",
"jest-cli": "~12.1.0",
"react-addons-test-utils": "15.4.0",
"sw-precache": "^3.2.0",
"uglify-js": "^2.6.0",
"watchify": "3.7.0"
},
"browserify": {
"transform": ["babelify"]
},
"scripts": {
"start": "python3 devserver",
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"setupTestFrameworkScriptFile": "<rootDir>/node_modules/jasmine-enzyme/lib/jest.js",
"testFileExtensions": ["es6", "js"],
"moduleFileExtensions": ["js", "json", "es6"],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/enzyme",
"<rootDir>/node_modules/jasmine-enzyme",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-bootstrap",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/nuclear-js",
"<rootDir>/js/nuclear"
],
"testDirectoryName": "vitrail_tests",
"modulePathIgnorePatterns": [
"<rootDir>/bootstrap/",
"<rootDir>/node_modules/"
]
},
"babel": {
"presets": ["es2015", "react"],
"comments": true,
"compact": false
}
}