-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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": "@pelevesque/numeric-code",
"version": "0.0.3",
"description": "Tool for working with a custom numeric code system.",
"main": "index.js",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"test": "standard && mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pelevesque/numeric-code.git"
},
"keywords": [
"math",
"numeric",
"code",
"string"
],
"author": "Pierre-Emmanuel Lévesque <pierre.e.levesque@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelevesque/numeric-code/issues"
},
"homepage": "https://github.com/pelevesque/numeric-code#readme",
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"standard": "^14.3.1"
},
"dependencies": {
"@pelevesque/substitute-substrings": "^0.0.1"
}
}