File tree 4 files changed +63
-0
lines changed
4 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* ]
4
+ indent_style = space
5
+ indent_size = 4
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [* .md ]
12
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change
1
+ node_modules
2
+ coverage
Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ node_js :
3
+ - " 6"
4
+ cache :
5
+ - node_modules
6
+ before_install :
7
+ - npm install
8
+ script :
9
+ - npm test
10
+ after_script :
11
+ - npm run coverage
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " srl" ,
3
+ "version" : " 0.1.0" ,
4
+ "description" : " Simple Regex Language" ,
5
+ "main" : " index.js" ,
6
+ "scripts" : {
7
+ "test" : " mocha" ,
8
+ "coverage" : " istanbul cover _mocha"
9
+ },
10
+ "repository" : {
11
+ "type" : " git" ,
12
+ "url" : " git+https://github.com/SimpleRegex/SRL-JavaScript.git"
13
+ },
14
+ "keywords" : [
15
+ " srl" ,
16
+ " regex" ,
17
+ " re" ,
18
+ " simpleregex"
19
+ ],
20
+ "author" : " Simple Regex Language" ,
21
+ "maintainers" : [
22
+
23
+ ],
24
+ "license" : " MIT" ,
25
+ "bugs" : {
26
+ "url" : " https://github.com/SimpleRegex/SRL-JavaScript/issues"
27
+ },
28
+ "engines" : {
29
+ "node" : " >= 6.0.0"
30
+ },
31
+ "homepage" : " https://simple-regex.com" ,
32
+ "devDependencies" : {
33
+ "coveralls" : " ^2.11.12" ,
34
+ "istanbul" : " ^0.4.5" ,
35
+ "mocha" : " ^3.0.2" ,
36
+ "mocha-lcov-reporter" : " ^1.2.0"
37
+ }
38
+ }
You can’t perform that action at this time.
0 commit comments