-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
80 lines (80 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "spel2js",
"version": "0.2.8",
"description": "Parse Spring Expression Language in JavaScript",
"author": {
"name": "Ben March",
"email": "[email protected]",
"url": "https://github.com/benmarch"
},
"homepage": "https://github.com/benmarch/spel2js",
"bugs": {
"url": "https://github.com/benmarch/spel2js/issues"
},
"licenses": [
{
"type": "Apache v2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"maintainers": [],
"repository": {
"type": "git",
"url": "git://github.com/benmarch/spel2js.git"
},
"main": "dist/spel2js.js",
"scripts": {
"build": "webpack --progress",
"build:dev": "webpack -d --progress --devtool cheap-module-source-map",
"test": "karma start test/karma.conf.js",
"lint": "eslint src/ test/",
"release": "npm test && npm run build && release-it"
},
"keywords": [
"parse",
"parser",
"spring",
"authorization",
"spel",
"spring expression language",
"expression",
"spring expression"
],
"dependencies": {},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-istanbul-loader": "0.1.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-register": "6.26.0",
"eslint": "4.7.2",
"eslint-config-airbnb-base": "12.0.0",
"eslint-config-prettier": "2.6.0",
"eslint-import-resolver-webpack": "0.8.3",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-prettier": "2.3.1",
"jasmine-core": "2.8.0",
"karma": "1.7.1",
"karma-browserify": "4.2.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "0.3.5",
"karma-phantomjs-launcher": "1.0.4",
"karma-source-map-support": "1.2.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.4",
"phantomjs": "2.1.7",
"prettier": "1.7.0",
"release-it": "3.0.0",
"webpack": "3.6.0",
"webpack-bower-externals": "1.5.4",
"webpack-node-externals": "1.6.0"
},
"engines": {
"node": ">=8"
}
}