-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 920 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
{
"name": "woa",
"version": "2.1.0",
"description": "NodeJS module for word analytics",
"main": "index.js",
"scripts": {
"compile": "node_modules/.bin/babel woa.js -o index.js",
"watch": "node_modules/.bin/babel woa.js -w -o index.js",
"prepublish": "npm run compile",
"test": "npm run compile && node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jobsamuel/woa.git"
},
"keywords": [
"text-analyzer",
"text-processor",
"words",
"language",
"analytics"
],
"author": "Jobsamuel Núñez <jobsamuel@gustico.com> (http://jobsamuel.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jobsamuel/woa/issues"
},
"homepage": "https://github.com/jobsamuel/woa#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1"
}
}