This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "retext-porter-stemmer",
"version": "1.0.0",
"description": "Retext implementation of the Porter Stemmer",
"license": "MIT",
"keywords": [
"porter",
"stemmer",
"retext"
],
"dependencies": {
"nlcst-to-string": "^0.1.5",
"stemmer": "^0.1.1",
"unist-util-visit": "^1.0.0"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/wooorm/retext-porter-stemmer.git"
},
"author": "Titus Wormer <[email protected]>",
"devDependencies": {
"browserify": "^11.0.1",
"chalk": "^1.0.0",
"eslint": "^1.0.0",
"esmangle": "^1.0.1",
"istanbul": "^0.3.0",
"jscs": "^2.0.0",
"jscs-jsdoc": "^1.0.0",
"mdast": "^0.28.0",
"mdast-comment-config": "^0.1.2",
"mdast-github": "^0.3.2",
"mdast-lint": "^0.4.2",
"mdast-slug": "^0.1.1",
"mdast-validate-links": "^0.3.1",
"mocha": "^2.0.0",
"retext": "^1.0.0-rc.2"
},
"scripts": {
"test-api": "mocha --check-leaks test.js",
"test-coverage": "istanbul cover _mocha -- test.js",
"test-travis": "npm run test-coverage",
"test": "npm run test-api",
"lint-api": "eslint .",
"lint-style": "jscs --reporter inline .",
"lint": "npm run lint-api && npm run lint-style",
"make": "npm run lint && npm run test-coverage",
"build-bundle": "browserify index.js --no-builtins -s retextPorterStemmer > retext-porter-stemmer.js",
"postbuild-bundle": "esmangle retext-porter-stemmer.js > retext-porter-stemmer.min.js",
"build-md": "mdast . --quiet",
"build": "npm run build-bundle && npm run build-md"
}
}