-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 851 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 851 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
{
"name": "hexagram-encode",
"version": "2.0.0",
"description": "Represent binary data as I Ching hexagrams",
"homepage": "https://github.com/qntm/hexagram-encode",
"repository": {
"type": "git",
"url": "git://github.com/qntm/hexagram-encode.git"
},
"type": "module",
"main": "src/index.js",
"keywords": [
"hexagram",
"encoding",
"unicode",
"text",
"decoding",
"binary",
"useless"
],
"scripts": {
"unit": "node --test --experimental-test-coverage --test-coverage-functions=100 --test-coverage-lines=100 --test-coverage-branches=100",
"postpublish": "npm version patch && git push",
"standard": "standard",
"test": "npm run standard && npm run unit"
},
"author": "qntm",
"license": "MIT",
"files": [
"src"
],
"devDependencies": {
"standard": "^17.0.0"
}
}