-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.01 KB
/
package.json
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": "unique-push-id",
"version": "1.0.2",
"description": "🆔 Generates unique, chronological, lexicographical push IDs similar to Firebase",
"main": "src/index.js",
"repository": "https://github.com/limit-zero/unique-push-id",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
"scripts": {
"test": "yarn lint && ./node_modules/.bin/mocha --reporter spec --require ./test/bootstrap.js",
"coverage": "./node_modules/.bin/nyc yarn test",
"lint": "./node_modules/.bin/eslint \"src/**/*.js\""
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0"
},
"nyc": {
"check-coverage": false,
"per-file": true,
"reporter": [
"text"
],
"all": true,
"cache": false,
"include": [
"src/**/*.js"
]
},
"keywords": [
"push",
"id",
"guid",
"uuid",
"chronological",
"sortable"
]
}