Skip to content

Commit 3b24a15

Browse files
committed
Package initialize
1 parent 6b656a6 commit 3b24a15

File tree

4 files changed

+63
-0
lines changed

4 files changed

+63
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
coverage

.travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

package.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
"Boom Lee <[email protected]>"
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+
}

0 commit comments

Comments
 (0)