-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
102 lines (102 loc) · 2.73 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
98
99
100
101
102
{
"name": "mancy",
"private": true,
"version": "3.2.0",
"description": "A GUI REPL for Javascript & more…",
"main": "main/index.js",
"scripts": {
"preinstall": "npm prune",
"postinstall": "electron-rebuild && gulp clean && gulp copy",
"test": "jest",
"cov": "jest --coverage",
"start": "gulp start",
"debug": "gulp debug",
"package": "npm dedupe && gulp package",
"package-all": "npm dedupe && gulp packageAll",
"release": "gulp release",
"watch": "gulp watch",
"build": "gulp build"
},
"jest": {
"scriptPreprocessor": "../node_modules/babel-jest",
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/reflux",
"./node_modules/lodash"
],
"verbose": true,
"rootDir": "./src"
},
"keywords": [
"REPL",
"JavaScript",
"CoffeeScript",
"TypeScript",
"LiveScript",
"ClojureScript"
],
"author": "Prince John Wesley <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^6.3.13",
"babel-jest": "^6.0.1",
"babel-polyfill": "^6.3.14",
"del": "^2.0.2",
"devtron": "^1.0.0",
"electron-packager": "^8.0.0",
"electron": "^1.4.15",
"electron-rebuild": "^1.5.7",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-cached": "^1.1.0",
"gulp-cli": "^0.3.0",
"gulp-concat": "^2.6.0",
"gulp-env": "^0.2.0",
"gulp-livereload": "^3.8.0",
"gulp-load-plugins": "^0.10.0",
"gulp-react": "^3.0.1",
"gulp-sass": "^2.0.4",
"gulp-util": "^3.0.6",
"jest-cli": "^0.5.8",
"node-sass": "^3.3.2",
"react-tools": "0.13.3",
"run-sequence": "^1.1.2",
"semver": "^5.0.3"
},
"dependencies": {
"babel-core": "^6.7.0",
"babel-runtime": "^6.9.1",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"c3": "https://github.com/princejwesley/c3.git",
"cljs-mancy": "^1.0.0",
"codemirror": "^5.13.0",
"coffee-script": "https://github.com/princejwesley/coffeescript.git",
"font-awesome": "^4.5.0",
"font-manager": "^0.2.2",
"github": "^0.2.4",
"is-css-color": "^1.0.0",
"livescript": "^1.4.0",
"lodash": "^3.10.1",
"md5": "^2.0.0",
"parinfer": "^1.7.0",
"react": "^0.13.3",
"reflux": "^0.2.12",
"typescript": "^1.8.2",
"yargs": "^3.32.0"
},
"settings": {
"disable-font-manager": true
},
"repository": {
"type": "git",
"url": "https://github.com/princejwesley/Mancy.git"
},
"bugs": {
"url": "https://github.com/princejwesley/Mancy/issues/new"
},
"homepage": "https://github.com/princejwesley/Mancy"
}