-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
43
44
45
46
47
48
49
{
"name": "elen",
"version": "1.0.10",
"description": "ELEN - Efficient Lexicographic Encoding of Numbers. For JavaScript.",
"main": "src/elen.js",
"scripts": {
"build": "sh scripts/build.sh",
"test": "NODE_PATH=$NODE_PATH:.. npx mocha",
"docs": "sh scripts/docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ealmansi/elen.git"
},
"keywords": [
"javascript",
"efficient",
"lexicographic",
"encoding",
"numbers",
"peter",
"seymour"
],
"author": "Emilio Almansi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ealmansi/elen/issues"
},
"homepage": "https://github.com/ealmansi/elen#readme",
"devDependencies": {
"acorn": "^7.0.0",
"ajv-keywords": "^3.4.1",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"http-server": "^0.10.0",
"jsdoc": "^3.6.3",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"mocha-eslint": "^4.1.0",
"npm-check-updates": "^3.1.21",
"uglify-es": "^3.3.9",
"uglify-js": "^3.4.9",
"watchify": "^3.11.1"
}
}