-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 895 Bytes
/
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
{
"name": "random-position",
"version": "0.3.1",
"description": "Generate random positions for ordered sequences",
"main": "dist/index.js",
"scripts": {
"test": "mocha tests",
"test:dev": "npm run test -- --watch",
"build": "babel src -d dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deiucanta/random-position.git"
},
"keywords": [
"random",
"position",
"sortable",
"ordered",
"sequences",
"lexicographical"
],
"author": "Andrei Canta <deiucanta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deiucanta/random-position/issues"
},
"homepage": "https://github.com/deiucanta/random-position#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"mocha": "^4.0.1"
}
}