-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
{
"name": "ramda-repl",
"description": "Ramda + Ramda Fantasy + Sanctuary REPL",
"version": "1.2.0",
"dependencies": {
"babel-core": "6.16.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"babelify": "7.3.0",
"babylon": "6.11.2",
"browserify": "^13.1.0",
"debounce": "1.0.0",
"load-script": "^1.0.0",
"pretty-js": "^0.1.8",
"ramda": "0.22.1",
"ramda-fantasy": "0.7.0",
"rdom": "^0.6.0",
"sanctuary": "0.11.1",
"through2": "2.0.1",
"vinyl-fs": "2.4.3"
},
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/ramda/ramda-repl.git"
},
"scripts": {
"build-js": "browserify -t [ babelify ] ./lib/js/main.js -o ./dist/bundle.js",
"watch-js": "watchify -t [ babelify ] ./lib/js/main.js -dvo 'exorcist ./dist/bundle.js.map > ./dist/bundle.js'",
"build-css": "postcss -u postcss-import -u cssnano -u autoprefixer 'last 2 versions' -o ./dist/bundle.css ./lib/css/repl.css",
"watch-css": "postcss -u postcss-import -u cssnano -u autoprefixer 'last 2 versions' --watch -o ./dist/bundle.css ./lib/css/repl.css",
"watch": "npm run watch-css & npm run watch-js",
"minify": "npm run build-js && uglifyjs ./dist/bundle.js -o ./dist/bundle.js",
"test": "mocha",
"server": "http-server",
"lint": "eslint lib/js/*.js; eslint test/*.js"
},
"devDependencies": {
"autoprefixer": "^6.5.0",
"codemirror": "^5.19.0",
"cssnano": "^3.7.5",
"eslint": "^3.7.0",
"exorcist": "^0.4.0",
"fake-xml-http-request": "^1.4.0",
"http-server": "^0.9.0",
"jsdom": "^16.5.0",
"jsdom-global": "^2.1.0",
"mocha": "^3.1.0",
"mock-require": "^1.3.0",
"postcss": "^8.4.31",
"postcss-cli": "^2.6.0",
"postcss-import": "^8.1.2",
"sinon": "^1.17.6",
"uglify-js": "^2.7.3",
"watchify": "^3.7.0"
}
}