This repository has been archived by the owner on Jan 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "redash",
"version": "0.23.0",
"description": "A better Standard Library for JavaScript",
"main": "redash.js",
"module": "redash.next.js",
"jsnext:main": "redash.next.js",
"directories": {
"test": "tests"
},
"files": [
"index.d.ts",
"redash.js",
"redash.min.js",
"redash.next.js",
"installer.js",
"installer.min.js"
],
"scripts": {
"lint": "eslint src tests",
"bundle": "npm run bundle:main && npm run bundle:next && npm run bundle:installer",
"bundle:main": "rollup --format umd --name redash -i src/bundles/index.js -o dist/redash.js",
"bundle:next": "rollup --format es6 --name redash -i src/bundles/index.js -o dist/redash.next.js",
"bundle:installer": "rollup --format umd --name redash -i src/bundles/installer.js -o dist/installer.js",
"minify": "npm run minify:main && npm run minify:installer",
"minify:main": "uglifyjs dist/redash.js --compress --mangle -o dist/redash.min.js",
"minify:installer": "uglifyjs dist/installer.js --compress --mangle -o dist/installer.min.js",
"compile": "npm run bundle && npm run minify",
"deploy": "rm -rf dist && npm run compile && cp -r dist/. .",
"test": "ava",
"docs:cache": "node docs/scripts/parse-docs",
"docs:start": "node docs/scripts/run-docs",
"docs:build": "node docs/scripts/build-docs",
"prepublish": "npm run deploy"
},
"author": "David Zukowski <[email protected]> (http://zuko.me)",
"license": "ISC",
"ava": {
"files": [
"tests/**/*.spec.js"
],
"source": [
"src/**/*.js"
],
"match": [],
"concurrency": 5,
"failFast": true,
"tap": false,
"require": []
},
"devDependencies": {
"@technologyadvice/genesis-core": "^0.13.0",
"ava": "^0.16.0",
"babel-eslint": "^7.1.1",
"babel-register": "^6.26.0",
"bootstrap": "^4.0.0-beta",
"eslint": "^2.13.1",
"jsdoc": "^3.4.2",
"marked": "^0.3.6",
"preact": "^8.2.1",
"preact-render-to-string": "^3.6.3",
"prismjs": "^1.6.0",
"rollup": "^0.21.0",
"shelljs": "^0.7.4",
"sinon": "^1.17.5",
"typescript": "^2.3.2",
"uglify-js": "^2.6.1"
}
}