-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1.02 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
{
"name": "raml-validator-loader",
"version": "0.1.11",
"description": "Converts RAML document to javascript validation functions",
"main": "lib/raml-validator-loader.js",
"scripts": {
"test": "./node_modules/.bin/jest -c jest.config.json",
"build": "./node_modules/.bin/webpack",
"eslint": "bash -c 'opts=$@ ; set -f; if [[ $# -lt 1 ]]; then opts=\"src/**/*.js\"; fi ; eslint --quiet ${opts}' 0"
},
"author": "Ioannis Charalampidis <ioannis.charalampidis@mesosphere.com> (http://www.mesosphere.com)",
"license": "Apache-2.0",
"dependencies": {
"raml-1-parser": "1.1.12"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.17.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.13.0",
"eslint-plugin-jsx-a11y": "2.1.0",
"jest": "^16.0.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
}
}