-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 5.11 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 5.11 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "libsvm-ts",
"version": "0.0.8",
"description": "A port of libsvm to Typescript using emscripten",
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"src",
"out",
"build",
"dist",
"index.js",
"LICENSE"
],
"engines": {
"node": ">=8.11.0"
},
"scripts": {
"clean": "npx del-cli build && npx del-cli dist",
"benchmark": "npm run build-benchmark && node benchmark/bin",
"build-benchmark": "(cd benchmark/iris; make)",
"build": "yarn clean && yarn build-ts && yarn build-webpack",
"build-ts": "npx tsc -p tsconfig.json",
"build-libsvm": "yarn build-emscripten",
"build-emscripten-clean": "make clean && rm -rf out/emscripten/",
"build-emscripten-wasm": "rimraf out/wasm && mkdir -p out/wasm && make wasm && cat src/pre.js out/emscripten/wasm/libsvm.js src/post.js > out/wasm/libsvm.js && cp out/emscripten/wasm/libsvm.wasm out/wasm/libsvm.wasm",
"build-emscripten-asm": "rimraf out/asm && mkdir -p out/asm && make asm && cat src/pre.js out/emscripten/asm/libsvm.js src/post.js > out/asm/libsvm.js && cp out/emscripten/asm/libsvm.wasm out/asm/libsvm.wasm",
"build-emscripten": "run-s build-emscripten-wasm build-emscripten-asm build-emscripten-clean",
"build-webpack": "rimraf dist/browser && mkdir -p dist/browser/asm dist/browser/wasm && webpack --config webpack/webpack.wasm.js && webpack --config webpack/webpack.asm.js && cp out/wasm/libsvm.wasm dist/browser/wasm/",
"demo-build": "rimraf demo-dist && BABEL_ENV=production webpack -p --config webpack/webpack.production.js; cp demos/index.html demo-dist",
"deploy": "npm run demo-build && gh-pages -d demo-dist",
"docs": "jsdoc2md src/loadSVM.js -t .docs/Readme.hbs --no-cache > README.md",
"start": "webpack-dev-server --config webpack/webpack.config.js",
"test": "npm run build && npm run test:unit && npm run lint && npm run pretty:lint",
"test:unit": "jest --runInBand",
"lint": "npx tslint -t verbose 'test/**/*.ts' 'src/**/*.ts'",
"fix": "npm run pretty:fix && npm run lint:fix",
"pretty:lint": "npx prettier \"src/**/*.ts\" \"test/**/*.ts\" --config ./.prettierrc.json --list-different",
"pretty:fix": "npx prettier \"src/**/*.ts\" \"test/**/*.ts\" --config ./.prettierrc.json --write",
"lint:fix": "npx tslint --fix --force -t verbose 'test/**/*.ts' 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git@github.com:machinelearnjs/libsvm-ts.git"
},
"keywords": [
"svm",
"libsvm",
"machine",
"learning",
"support",
"vector",
"machines"
],
"author": "Jason Shin <visualbbasic@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/machinelearnjs/libsvm-ts/issues"
},
"homepage": "https://github.com/machinelearnjs/libsvm-ts#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.11",
"@types/node": "8.9.4",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "4.0.0-alpha.6",
"chroma-js": "^1.3.4",
"cli-table": "^0.3.1",
"css-loader": "^0.28.7",
"del-cli": "1.1.0",
"eslint": "^4.19.1",
"eslint-config-cheminfo": "^1.17.2",
"eslint-config-neptun-react": "^1.0.2",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-no-only-tests": "^2.0.0",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^0.11.2",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "^0.0.5-beta.2",
"gh-pages": "^1.1.0",
"imports-loader": "^0.7.1",
"jest": "24.7.1",
"jquery": "^3.2.1",
"jsdoc-to-markdown": "^3.0.3",
"less": "^2.7.3",
"lodash-es": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"lodash.omitby": "^4.6.0",
"lodash.range": "^3.2.0",
"ml-dataset-iris": "^1.0.0",
"ml-kernel": "^2.3.4",
"ml-svm": "^2.1.2",
"mocha": "^3.5.3",
"mocha-better-spec-reporter": "^3.1.0",
"npm-run-all": "^4.1.2",
"preact": "^8.2.6",
"preact-compat": "^3.17.0",
"prettier": "1.10.2",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-icons": "^2.2.7",
"react-loading-animation": "^1.4.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-form": "^6.8.0",
"redux-undo": "1.0.0-beta9-7",
"reselect": "^2.5.4",
"rimraf": "^2.6.2",
"serviceworker-webpack-plugin": "^0.2.3",
"should": "^11.2.0",
"style-loader": "^0.18.2",
"tether": "^1.4.3",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tslint": "5.4.3",
"tslint-config-prettier": "1.8.0",
"typescript": "3.4.1",
"url-loader": "^0.5.9",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.9.7",
"webpack-visualizer-plugin": "^0.1.11",
"worker-loader": "^0.8.1"
}
}