This repository has been archived by the owner on Jun 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.72 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
{
"name": "nCoda",
"description": "Web application for formalized score control.",
"version": "0.1.1",
"author": "Christopher Antila <christopher@antila.ca>",
"license": "GPL-3.0",
"repository": "ssh://vcs@goldman.ncodamusic.org/diffusion/JL/julius.git",
"main": "js/electron_main.js",
"dependencies": {
"electron": "1.3.4"
},
"devDependencies": {
"amazeui-react": "1.2.x",
"babel-jest": "15.0.x",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-syntax-object-rest-spread": "6.13.x",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.14.x",
"babel-preset-react": "6.11.x",
"babelify": "7.3.0",
"codemirror": "5.18.x",
"enzyme": "^2.4.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"history": "3.0.x",
"immutable": "3.8.x",
"jasmine-reporters": "2.2.x",
"jest-cli": "18.1.x",
"less": "2.7.1",
"less-plugin-clean-css": "1.5.1",
"moment": "2.14.x",
"nuclear-js": "1.3.0",
"pdfjs-dist": "^1.6.230",
"react": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-codemirror": "^0.3.0",
"react-dom": "15.3.1",
"react-redux": "4.4.x",
"react-router": "2.7.x",
"react-split-pane": "0.1.44",
"redux": "3.6.x",
"redux-logger": "2.7.x",
"watchify": "3.7.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"start": "python3 devserver",
"test": "jest"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/setup-jasmine-env.js",
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/jasmine-reporters",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/enzyme",
"<rootDir>/node_modules/nuclear-js",
"<rootDir>/js/nuclear",
"<rootDir>/js/nuclear/stores"
],
"testRegex": "js/(.*)/tests/(.*)\\.js$"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
],
"comments": true,
"compact": false
}
}