forked from molgenis/molgenis-js-rsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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": "@molgenis/rsql",
"version": "0.1.1",
"description": "RSQL javascript tools for transforming, encoding and parsing of strings to RSQL and vice versa",
"main": "dist/rsql.js",
"module": "dist/rsql.es.js",
"browser": "dist/rsql.umd.js",
"scripts": {
"lint": "standard",
"unit": "standard; babel-node ./node_modules/istanbul/lib/cli.js cover --dir test/unit/coverage ./node_modules/mocha/bin/_mocha test/unit/specs/**/*.js",
"debug": "standard; mocha --compilers js:babel-register --debug-brk",
"unit:watch": "standard; mocha --compilers js:babel-register --reporter min --watch",
"build": "rollup -c",
"preversion": "yarn install; yarn unit",
"postversion": "yarn build"
},
"publishConfig": {
"access": "public",
"registry": "http://registry.npmjs.org"
},
"repository": "[email protected]:molgenis/molgenis-js-rsql.git",
"keywords": [
"molgenis"
],
"author": "MOLGENIS Team, Systems Genetics, UMCG, Netherlands",
"license": "LGPL-3.0",
"dependencies": {
"mdurl": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"chai": "^4.0.0-canary.1",
"cross-env": "^5.2.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.1.2",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-node-resolve": "^3.3.0",
"standard": "^11.0.1"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-runtime"
]
},
"files": [
"dist"
]
}