-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "@bitrelay/bufio",
"version": "3.0.2",
"description": "Buffer and serialization utilities",
"main": "lib/index.js",
"module": "lib/bundle.esm.js",
"typings": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"format": "prettier --config .prettierrc --write --list-different 'src/**/*.ts'",
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "webpack",
"test": "mocha lib/test --colors --exit --require source-map-support/register",
"watch": "tsc -w",
"prepublishOnly": "rm -rf lib && npm run build && npm run format && npm run lint && npm test"
},
"keywords": [
"buffer",
"serialization"
],
"author": "Philipp Petzold <[email protected]>",
"license": "MIT",
"devDependencies": {
"@purtuga/esm-webpack-plugin": "^1.2.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.21",
"@types/webpack": "^4.41.2",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitrelay/bufio.git"
},
"homepage": "https://github.com/bitrelay/bufio#readme",
"bugs": {
"url": "https://github.com/bitrelay/bufio/issues"
},
"publishConfig": {
"access": "public"
}
}