Skip to content

Commit 3b0cdcb

Browse files
committed
npm init commit.
1 parent f80b861 commit 3b0cdcb

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/node_modules
2+
/coverage
3+
/.idea

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "react-native-queue",
3+
"version": "1.0.0-alpha.0",
4+
"description": "A React Native Job Queue",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "jest"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/billmalarky/react-native-queue.git"
12+
},
13+
"keywords": [
14+
"react",
15+
"react-native",
16+
"queue",
17+
"job-queue",
18+
"task-queue"
19+
],
20+
"author": "Reid Mayo",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/billmalarky/react-native-queue/issues"
24+
},
25+
"homepage": "https://github.com/billmalarky/react-native-queue#readme"
26+
}

0 commit comments

Comments
 (0)