-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.01 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@japont/unicode-range",
"description": "Unicode-range parser/builder.",
"license": "MIT",
"author": "3846masa <3846masahiro+git@gmail.com>",
"repository": "git@github.com:Japont/unicode-range.git",
"version": "1.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "nyc ava"
},
"dependencies": {},
"devDependencies": {
"ava": "^1.0.0-beta.6",
"nyc": "^12.0.2",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"keywords": [
"css",
"font-face",
"unicode",
"unicode-range"
],
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"reporter": [
"html",
"json",
"text",
"text-summary"
],
"extension": [
".ts"
]
},
"types": "lib/index.d.ts"
}