Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit3b24a15

Browse files
committed
Package initialize
1 parent6b656a6 commit3b24a15

File tree

4 files changed

+63
-0
lines changed

4 files changed

+63
-0
lines changed

‎.editorconfig‎

Lines changed: 12 additions & 0 deletions
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‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
coverage

‎.travis.yml‎

Lines changed: 11 additions & 0 deletions
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‎

Lines changed: 38 additions & 0 deletions
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 <teabyii@gmail.com>"
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)

[8]ページ先頭

©2009-2025 Movatter.jp