-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "showcase-writing-assistant",
"version": "0.9.0",
"description": "English language writing assistant",
"keywords": [
"NLP",
"grammar",
"language",
"english",
"winkNLP",
"wink"
],
"main": "./src/main.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha ./test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src/*.js ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/showcase-writing-assistant.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkjs/showcase-writing-assistant/issues"
},
"homepage": "http://winkjs.org/",
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0"
},
"dependencies": {
"@babel/core": "^7.15.0",
"babel-core": "^6.26.3",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"request": "^2.88.2",
"wink-eng-lite-web-model": "^1.2.1",
"wink-nlp": "^1.7.2"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}