-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "bitmatrix",
"version": "0.5.0",
"description": "Low-cost dot matrix Class",
"main": "dist/BitMatrix.js",
"browser": "dist/BitMatrix.umd.js",
"module": "dist/BitMatrix.es.js",
"types": "lib/index.d.ts",
"files": [
"*.js",
"*.ts",
"*.json",
"src",
"lib",
"dist"
],
"scripts": {
"clean": "rimraf lib dist",
"precompile": "npm run clean",
"compile": "tsc && rollup -c",
"test": "cross-env TS_NODE_PROJECT='./test/tsconfig.json' ava --fail-fast test/ava/",
"test-cov": "nyc npm run test",
"test-memory": "cross-env TS_NODE_PROJECT='./test/tsconfig.json' ts-node test/memory",
"test-benchmark": "cross-env TS_NODE_PROJECT='./test/tsconfig.json' ts-node test/benchmark",
"prepack": "npm run test && npm run compile"
},
"homepage": "https://github.com/cnwhy/BitMatrix",
"author": "cnwhy",
"repository": {
"type": "git",
"url": "https://github.com/cnwhy/BitMatrix.git"
},
"keywords": [
"Matrix",
"BitMatrix",
"ByteMatrix"
],
"license": "ISC",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/node": "^11.13.4",
"ava": "^1.4.1",
"benchmark": "^2.1.4",
"cross-env": "^5.2.0",
"microtime": "^3.0.0",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"rollup": "^1.15.1",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-typescript": "^1.0.1",
"ts-node": "^8.0.3",
"tslib": "^1.10.0",
"typescript": "^3.3.4000"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"@cnwhy/base64": "^0.1.1"
}
}