-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.34 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
{
"name": "guesslang-js",
"version": "0.0.3",
"description": "Use guesslang's ML model to detect source code languages",
"main": "dist/lib/guesslang.min.js",
"module": "dist/lib/guesslang.min.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && webpack --mode production",
"watch": "npm run clean && webpack --watch",
"test": "mocha --recursive dist/test/**/*.test.js",
"pretest": "npm run clean && tsc --build ./test",
"prepack": "npm run build",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hieplpvip/guesslang-js.git"
},
"author": "Bao-Hiep Le",
"license": "MIT",
"bugs": {
"url": "https://github.com/hieplpvip/guesslang-js/issues"
},
"homepage": "https://github.com/hieplpvip/guesslang-js#readme",
"devDependencies": {
"@tensorflow/tfjs-backend-cpu": "^3.9.0",
"@tensorflow/tfjs-converter": "^3.9.0",
"@tensorflow/tfjs-core": "^3.9.0",
"@types/chai": "^4.2.22",
"@types/mocha": "9.0.0",
"@types/node": "^16.10.2",
"chai": "^4.3.4",
"mocha": "9.1.2",
"prettier": "^2.4.1",
"rimraf": "3.0.2",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0"
}
}