-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.42 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.42 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
{
"name": "iroun",
"version": "0.4.0",
"description": "A JavaScript-based name analyzer for all javascript developers in the world.",
"bin": {
"iroun": "./bin/iroun.js"
},
"scripts": {
"test": "jest",
"make:githubrepoinfo": "node scripts/dataset/make-most-stars-github-addr.js",
"clone:opensource": "node scripts/dataset/clone-github-repo.js",
"extract:word:opensource": "node --max-old-space-size=8192 scripts/dataset/extract-word-github.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pistis/iroun.git"
},
"engines": {
"node": ">=8.9.0"
},
"keywords": [
"iroun",
"variables",
"topic",
"characteristic",
"wordclouds",
"word",
"wordart",
"naming",
"names",
"analysis",
"ast",
"wordpos",
"wordnet"
],
"author": {
"name": "pistis",
"email": "vamalboro@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pistis/iroun/issues"
},
"homepage": "https://github.com/pistis/iroun#readme",
"dependencies": {
"@typescript-eslint/parser": "^1.9.0",
"acorn": "^6.1.1",
"acorn-jsx": "^5.0.1",
"acorn-loose": "^6.0.0",
"acorn-walk": "^6.1.1",
"axios": "^0.21.1",
"commander": "^2.20.0",
"didyoumean": "^1.2.1",
"eslint": "^5.16.0",
"execa": "^1.0.0",
"flow-parser": "^0.98.1",
"fs-extra": "^8.0.1",
"inquirer": "^6.3.1",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"natural": "^0.6.3",
"ora": "^3.4.0",
"p-iteration": "^1.1.8",
"readline": "^1.3.0",
"semver": "^6.1.0",
"slash": "^3.0.0",
"stopwords-json": "^1.2.0",
"string.prototype.padstart": "^3.0.0",
"typescript": "^3.4.5",
"vue-template-compiler": "^2.6.10",
"wordpos": "^1.2.0"
},
"devDependencies": {
"delay": "^4.2.0",
"jest": "^24.8.0",
"mkdirp": "^0.5.1",
"progress": "^2.0.3",
"rimraf": "^2.6.3"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "<rootDir>/report/jest/",
"coverageReporters": [
"html",
"text",
"json"
],
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**"
],
"verbose": true,
"moduleDirectories": [
"node_modules"
],
"moduleFileExtensions": [
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testMatch": [
"<rootDir>/__tests__/spec/*.spec.js?(x)"
]
}
}