-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
39 lines (39 loc) · 900 Bytes
/
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
{
"name": "mlhelper",
"version": "0.2.0",
"description": "tools for ML in JavaScript",
"main": "lib/index.js",
"scripts": {
"test": "mocha --recursive",
"dev": "gulp watch-ts",
"build": "gulp copyFiles && gulp build-ts",
"postversion": "git push && git push --tags"
},
"keywords": [
"ML",
"AI"
],
"author": "laoqiren",
"license": "MIT",
"dependencies": {
"express": "^4.16.2",
"immutable": "^3.8.2",
"lodash": "^4.17.4",
"mathjs": "^3.16.4",
"swig": "^1.4.2",
"sylvester": "0.0.21"
},
"devDependencies": {
"@types/lodash": "^4.14.78",
"@types/node": "^8.0.46",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-typescript": "^3.2.2",
"mocha": "^4.0.1",
"typescript": "^2.5.3"
}
}