-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.26 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
{
"name": "bexl",
"version": "0.1.0",
"description": "A parser and interpreter for the Basic EXpression Language (BEXL)",
"keywords": [
"bexl",
"basic",
"expression",
"language"
],
"author": "Jason Simeone",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bexl/bexl-js.git"
},
"main": "lib/index.js",
"unpkg": "dist/bexl.min.js",
"browser": "dist/bexl.min.js",
"bin": {
"bexl": "lib/cli.js"
},
"dependencies": {
"argparse": "^1.0.10",
"enumify": "^1.0.4",
"lodash": "^4.17.5",
"luxon": "^1.0.0",
"readline-sync": "^1.4.9"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.46.1",
"flow-bin": "^0.69.0",
"mocha": "^5.0.5",
"nyc": "^11.7.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"yamljs": "^0.3.0"
},
"scripts": {
"build:node": "rm -rf ./lib && babel src -d lib",
"build:node:watch": "rm -rf ./lib && babel src -d lib --watch",
"build:browser": "rm -rf ./dist && rollup --config",
"build:browser:watch": "rm -rf ./dist && rollup --config --watch",
"build": "npm run build:node && npm run build:browser",
"lint": "eslint --no-ignore ./src ./rollup.config.js ./.eslintrc.js",
"flow": "flow",
"tidy": "npm run lint && npm run flow",
"test:node": "cross-env NODE_ENV=test nyc mocha",
"test:node:watch": "cross-env NODE_ENV=test nyc mocha --watch",
"test": "npm run test:node",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"dist",
"lib",
"src"
],
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}