-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.33 KB
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
{
"name": "regularity",
"version": "0.5.1",
"description": "regular expressions for humans",
"main": "lib/regularity.js",
"author": "Fernando Martinez de la Cueva <me@oinak.com> (http://oinak.com/)",
"contributors": [
"Elías Alonso <elias@redradix.com> (http://redradix.com/)",
"Laura Paredes Viera <laura@wearepeople.io> (http://wearepeople.io)",
"Alejandra Goicoechea <alex.goicoechea@wearepeople.io> (http://wearepeople.io)",
"Ángel Sanz <angelsanzgit@gmail.com> (https://github.com/angelsanz)"
],
"thanks": "Andrew Berls for the original idea and the Regularity Ruby gem (https://rubygems.org/gems/regularity)",
"homepage": "https://github.com/oinak/regularity",
"repository": {
"type": "git",
"url": "https://github.com/oinak/regularity.git"
},
"bugs": {
"url": "https://github.com/oinak/regularity/issues"
},
"license": "MIT",
"keywords": [
"regular",
"expression",
"regex",
"regexp",
"dsl"
],
"scripts": {
"test": "jasmine",
"istanbul-local": "istanbul cover jasmine",
"post-to-coveralls-io": "istanbul cover jasmine && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"devDependencies": {
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"istanbul": "^0.3.14",
"jasmine": "^2.1.1"
}
}