-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "oligrapher2-editor",
"version": "0.1.8",
"description": "Editing UI for Oligrapher 2",
"main": "build/oligrapher.editor.js",
"scripts": {
"dev-build": "npm run && webpack-dev-server --devtool eval --progress --history-api-fallback --colors --hot --content-base build --port 9090 --config webpack.dev.config",
"prod-build": "webpack --display-modules --config webpack.prod.config.js --output-filename=oligrapher.editor.js",
"min-build": "webpack -p --optimize-dedupe --display-modules --config webpack.prod.config.js --output-filename=oligrapher.editor.min.js",
"build-all": "npm run prod-build && npm run min-build",
"test": "jest"
},
"author": "Matthew Skomarovsky",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/skomputer/oligrapher2-editor.git"
},
"bugs": {
"url": "https://github.com/skomputer/oligrapher2-editor/issues"
},
"homepage": "https://github.com/skomputer/oligrapher2-editor/",
"dependencies": {
"file-loader": "^0.8.5",
"lodash": "^3.10.1",
"oligrapher2": "^0.1",
"react": "^0.14",
"react-dom": "^0.14.2",
"react-hotkeys": "^0.7.0"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-core": "^5.4.7",
"babel-jest": "^5.3.0",
"babel-loader": "^5.1.3",
"css-loader": "^0.23.1",
"jest-cli": "^0.7.1",
"react-addons-test-utils": "^0.14.2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1",
"webpack-dev-server": "^1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"moduleFileExtensions": [
"js",
"jsx"
],
"testFileExtensions": [
"js",
"jsx"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/lodash"
]
}
}