-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.35 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
{
"name": "bre",
"version": "2.0.0-beta.4",
"description": "A Binary-Object Mapper for JavaScript.",
"main": "index",
"files": [
"index.*",
"text-encoders"
],
"engines": {
"node": ">=6"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.5",
"codecov": "^3.0.0",
"cpx": "^1.5.0",
"dts-bundle": "^0.7.3",
"eslint": "^4.19.1",
"eslint-config-mysticatea": "^13.0.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"iconv-lite": "^0.4.21",
"mocha": "^5.1.1",
"npm-run-all": "^4.1.2",
"nyc": "^11.6.0",
"opener": "^1.4.3",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.58.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-watch": "^4.3.1",
"ts-node": "^5.0.1",
"typescript": "^2.8.3",
"typescript-eslint-parser": "^15.0.0"
},
"scripts": {
"build": "npm-run-all clean build:tsc -p build:rollup build:dts:**",
"build:tsc": "tsc --module es2015",
"build:rollup": "rollup -c",
"build:dts:index": "dts-bundle --name bre --main .temp/src/index.d.ts --out ../../index.d.ts",
"build:dts:text-encoders": "cpx .temp/src/text-encoders/*.d.ts text-encoders/",
"clean": "rimraf .temp text-encoders index.*",
"coverage": "nyc report --reporter lcov && opener ./coverage/lcov-report/index.html",
"lint": "eslint src test --ext .ts",
"pretest": "npm run -s lint",
"test": "nyc -- _mocha --reporter dot \"test/**/*.ts\"",
"preversion": "npm test",
"version": "npm run -s build",
"postversion": "git push && git push --tags",
"prewatch": "npm run -s clean",
"watch": "mocha --require ts-node/register --reporter dot --watch-extensions ts --watch --growl \"test/**/*.ts\"",
"codecov": "nyc report -r lcovonly && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/bre.git"
},
"keywords": [
"object",
"record",
"binary",
"buffer",
"mapper",
"wrapper",
"view",
"accessor",
"read",
"write",
"serialize",
"deserialize",
"save",
"store"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/bre/issues"
},
"homepage": "https://github.com/mysticatea/bre#readme"
}