-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
97 lines (97 loc) · 2.53 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
91
92
93
94
95
96
97
{
"name": "iso",
"private": true,
"version": "0.1.2",
"description": "Build and prototype with pure JSX – no build setup or command line required",
"main": "main/index.js",
"scripts": {
"prepare": "babel src -d renderer",
"watch": "babel src -d renderer -w",
"start": "electron main/index.js",
"pack": "build --dir",
"build": "build",
"test": "jest"
},
"keywords": [],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"@compositor/logo": "^1.3.1",
"@compositor/webfont": "^1.0.0-1",
"ace": "^1.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-standalone": "^6.26.0",
"brace": "^0.11.1",
"chokidar": "^2.0.3",
"chroma-js": "^1.3.7",
"clean-tag": "^1.0.4",
"dot-prop": "^4.2.0",
"electron-log": "^2.2.11",
"electron-store": "^1.3.0",
"find-up": "^2.1.0",
"functional-electron-menu": "^1.0.0",
"get-port": "^3.2.0",
"gray-matter": "^4.0.1",
"grid-styled": "^4.1.0",
"html-tags": "^2.0.0",
"is-url": "^1.2.2",
"js-yaml": "^3.10.0",
"loader-utils": "^1.1.0",
"lodash.camelcase": "^4.3.0",
"lodash.debounce": "^4.0.8",
"mini-html-webpack-plugin": "^0.2.3",
"node-mac-notifier": "^0.1.0",
"opn": "^5.1.0",
"prop-types": "^15.6.0",
"react": "^16.3.2",
"react-ace": "^6.1.0",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.2",
"stringify-object": "^3.2.2",
"styled-components": "^3.2.6",
"styled-system": "^2.2.4",
"update-electron-app": "^1.1.2",
"webpack": "^4.7.0"
},
"devDependencies": {
"electron": "^2.0.0",
"electron-builder": "^20.11.1",
"jest": "^22.4.3",
"spectron": "^3.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c8r/iso.git"
},
"bugs": {
"url": "https://github.com/c8r/iso/issues"
},
"homepage": "https://github.com/c8r/iso#readme",
"build": {
"appId": "io.compositor.iso",
"productName": "Iso",
"copyright": "© 2018 Compositor, Inc. All rights reserved",
"mac": {
"category": "public.app-category.developer-tools",
"icon": "node_modules/@compositor/logo/dist/iso.icns"
},
"files": [
"**/*",
"!src",
"!test",
"!coverage"
]
},
"jest": {
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.jsx?$",
"coverageReporters": [
"html"
],
"collectCoverage": true
}
}