This repository has been archived by the owner on Jun 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
110 lines (110 loc) · 3.54 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
103
104
105
106
107
108
109
110
{
"name": "lumo-cljs",
"version": "1.10.1",
"description": "Fast, cross-platform, standalone ClojureScript REPL",
"author": "António Nuno Monteiro <anmonteiro@gmail.com> (https://anmonteiro.com)",
"license": "EPL-1.0",
"repository": {
"type": "git",
"url": "https://github.com/anmonteiro/lumo.git"
},
"bugs": {
"url": "https://github.com/anmonteiro/lumo/issues"
},
"homepage": "https://github.com/anmonteiro/lumo",
"preferGlobal": true,
"config": {
"unsafe-perm": true
},
"bin": {
"lumo": "download/dist/lumo"
},
"files": [
"download/dist",
"download/install.js"
],
"scripts": {
"type:check": "flow check",
"lint": "eslint src/js",
"prettier": "prettier --write \"./{vendor,src,scripts,lib,packages}/**/**.js\"",
"test": "jest",
"bundle": "node scripts/bundle.js --dev",
"build": "cross-env NODE_ENV=production node scripts/bundle.js",
"dev": "node target/bundle.js -k lumo-cache -c target",
"test-dev": "node target/bundle.js -k test-lumo-cache -c target:src/test/cljs:src/test/lumo:src/test/cljs_cp -D org.clojure/test.check:0.10.0-alpha4",
"build-download": "webpack --context download --config download/webpack.config.js",
"prepublishOnly": "yarn build-download && cp /dev/null download/dist/lumo",
"postinstall": "node download/install.js || nodejs download/install.js"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-stage-2": "^7.0.0",
"@babel/runtime": "^7.1.5",
"async-retry": "^1.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"chalk": "^2.4.1",
"cross-env": "^5.2.0",
"death": "^1.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "0.98.1",
"google-closure-compiler-js": "20170910.0.1",
"jest-cli": "^24.7.0",
"jszip": "github:anmonteiro/jszip#patch-1",
"nexe": "github:anmonteiro/nexe#anmonteiro-patch-1",
"node-fetch": "^2.2.1",
"paredit.js": "^0.3.4",
"posix-getopt": "github:anmonteiro/node-getopt#master",
"prettier": "^1.15.1",
"progress": "^2.0.0",
"read-pkg": "^5.1.1",
"rollup": "^1.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.1.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"which-promise": "^1.0.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"setupFiles": [
"./scripts/jest/environment.js"
],
"collectCoverageFrom": [
"src/js/**/*.js"
],
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/lib",
"<rootDir>/node_modules"
],
"roots": [
"src/js"
],
"resetModules": true
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/lumo",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}