-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.35 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
83
84
85
86
87
88
89
90
91
{
"name": "sd-expression-engine",
"version": "0.1.15",
"description": "SilverDecisions expression engine module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SilverDecisions/sd-expression-engine.git"
},
"keywords": [
"SilverDecisions",
"expression",
"engine"
],
"author": "Michał Wasiluk",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/SilverDecisions/sd-expression-engine/issues"
},
"homepage": "https://github.com/SilverDecisions/sd-expression-engine#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
],
"plugins": [
"transform-class-properties",
"transform-object-assign",
[
"babel-plugin-transform-builtin-extend",
{
"globals": [
"Error"
]
}
]
]
}
]
]
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"chalk": "^2.4.2",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-filelist": "^2.0.3",
"gulp-load-plugins": "^2.0.3",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"jasmine": "^3.6.1",
"jquery": "^3.5.1",
"karma": "^4.4.1",
"karma-browserify": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^2.0.1",
"merge-stream": "^2.0.0",
"release-it": "^13.6.6",
"stringify": "^5.2.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1",
"yargs": "^15.4.1"
},
"dependencies": {
"mathjs": "^5.10.3",
"sd-utils": "^0.1.14",
"sd-random": "^0.1.3"
}
}