-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 985 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 985 Bytes
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
{
"name": "@wearerobos/random-text-parser",
"version": "0.0.3",
"description": "Generate random text by randomizing sentences between parenthesis separated by pipe",
"author": "ROBOS.im",
"license": "MIT",
"keywords": [
"random text",
"parser",
"generator",
"random"
],
"repository": {
"type": "git",
"url": "https://github.com/wearerobos/random-text-parser"
},
"bugs": {
"url": "https://github.com/wearerobos/random-text-parser/issues"
},
"contributors": [
"Rafael Amorim <hi@rafaismy.name>",
"Juliano Penna <julianopenna@gmail.com>"
],
"main": "src/index.js",
"scripts": {
"test": "mocha tests/*.js",
"test-watch": "mocha --watch tests/*.js"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.1.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha": "^5.1.0",
"mocha": "^5.2.0"
}
}