-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 982 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
40
41
42
43
{
"name": "lang-detector",
"version": "1.0.6",
"description": "A library for detecting the programming language of a code snippet.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./test/test.js",
"bundle": "./node_modules/.bin/webpack",
"bundle-min": "./node_modules/.bin/webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/ts95/lang-detector"
},
"keywords": [
"programming",
"language",
"detection",
"detector",
"code",
"classify",
"classifier",
"identify",
"identifier"
],
"author": "Toni Sučić",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts95/lang-detector/issues"
},
"homepage": "https://github.com/ts95/lang-detector",
"dependencies": {
"underscore": "^1.8.2"
},
"browserDependencies": {
"underscore": "^1.8.2"
},
"devDependencies": {
"jquery": "^2.1.3",
"mocha": "^2.2.1",
"webpack": "^3.0.0"
}
}