-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 922 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
37
{
"name": "codpoint",
"version": "1.0.1",
"description": "utf8, utf16, wtf8, and wtf16 decoding without strings",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"build": "rollup src/index.js -f cjs -m inline -o dist/index.js -e stream",
"lint": "eslint src",
"test": "npm run build && tap test/*.js",
"test-local": "npm run build && TAP_RCFILE=.taprc tap test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catbeef/codpoint.git"
},
"keywords": [
"utf8",
"utf16",
"utf32",
"wtf8",
"wtf16",
"decode",
"codepoints"
],
"author": "darien maillet valentine",
"license": "MIT",
"bugs": {
"url": "https://github.com/catbeef/codpoint/issues"
},
"homepage": "https://github.com/catbeef/codpoint#readme",
"devDependencies": {
"eslint": "^4.6.0",
"rollup": "^0.49.2",
"tap": "^10.7.2"
}
}