-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 804 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 804 Bytes
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
{
"name": "flakeless",
"version": "2.0.0",
"description": "Generates unique IDs from timestamps",
"main": "index.js",
"keywords": [
"snowflake",
"flakeless",
"unique",
"id",
"ticket",
"client",
"server",
"distributed"
],
"scripts": {
"pretest": "node_modules/.bin/eslint .",
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/asalani93/node-flakeless"
},
"author": "Anthony Salani (https://github.com/asalani93)",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-config-google": "^0.4.0",
"jsdoc": "^3.4.0",
"mocha": "^2.4.5",
"node-gyp": "^3.3.1"
},
"dependencies": {
"nan": "^2.2.1",
"socket.io": "^1.4.5"
}
}