-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
98 lines (98 loc) · 1.99 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
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
{
"name": "improv",
"version": "1.0.0",
"description": "A model-backed generative text grammar tool for javascript",
"homepage": "",
"author": {
"name": "Bruno Dias",
"email": "[email protected]",
"url": "http://segue.pw/"
},
"files": [
"dist"
],
"main": "dist/index.js",
"devDependencies": {
"async": "^2.4.1",
"babel-core": "^5.5.0",
"babel-eslint": "^4.1.6",
"del": "^2.0.2",
"eslint": "^3.9.1",
"eslint-config-xo": "^0.15.2",
"eslint-config-xo-space": "^0.14.0",
"eslint-plugin-babel": "^3.0.0",
"fs-jetpack": "^0.7.1",
"gulp": "^4.0",
"gulp-babel": "^5.1.0",
"gulp-eslint": "^1.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.0.0",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"isparta": "^3.0.3",
"lodash": "^4.0.0",
"should": "^8.2.0",
"simple-mock": "^0.5.0"
},
"eslintConfig": {
"extends": "xo-space/esnext",
"env": {
"mocha": true
},
"rules": {
"prefer-arrow-callback": 0,
"space-before-function-paren": [
2,
"always"
],
"curly": [
2,
"multi-line"
],
"padded-blocks": 0,
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"babel/object-curly-spacing": [
2,
"always"
],
"new-cap": [
2,
{
"capIsNew": false,
"newIsCap": true
}
],
"prefer-reflect": [
2,
{
"exceptions": [
"apply",
"call"
]
}
],
"linebreak-style": 0,
"max-statements-per-line": 0,
"max-lines": 0
}
},
"repository": "sequitur/improv",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp",
"demo": "gulp demo"
},
"license": "MIT",
"dependencies": {
"amdefine": "^1.0.1",
"lodash": "^4.0.1",
"nopt": "^4.0.1"
}
}