-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (48 loc) · 1.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
{
"name": "ifrit",
"version": "0.1.3",
"description": "An SQL to NoSQL compiler for data aggregation ",
"main": "dist/index.js",
"scripts": {
"build:psc": "pulp build -O -j 4 --skip-entry-point --main 'Ifrit.Core' --src-path src/Ifrit --to dist/bundle.js",
"build:export": "echo 'module.exports = PS;' >> dist/bundle.js",
"build:minify": "google-closure-compiler-js dist/bundle.js > dist/bundle.min.js && rm dist/bundle.js",
"build": "npm run build:psc && npm run build:export && npm run build:minify",
"before:test": "mongorestore examples/dump",
"test": "for example in $(find examples/ -type f -name *.js); do node $example || exit 1; done",
"test:benchmark": "node test/benchmark",
"before:release": "mkdir -p releases/github releases/gh-pages",
"release:gh-pages": "jsdoc dist/index.js -t node_modules/minami -d releases/gh-pages",
"release:github": "cp -r LICENSE src dist bower.json package.json releases/github",
"release": "npm run release:gh-pages && npm run release:github"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KtorZ/purescript-ifrit.git"
},
"keywords": [
"sql",
"nosql",
"compilation",
"aggregation"
],
"author": "Matthias Benkort <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/KtorZ/purescript-ifrit/issues"
},
"homepage": "https://github.com/KtorZ/purescript-ifrit#readme",
"devDependencies": {
"benchmark": "^2.1.3",
"bower": "^1.8.0",
"google-closure-compiler-js": "^20170218.0.0",
"jsdoc": "^3.4.3",
"minami": "^1.1.1",
"mongodb": "^2.2.25",
"pulp": "^10.0.4",
"purescript": "^0.10.7"
},
"dependencies": {
"decimal.js": "^7.1.1"
}
}