-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
{
"name": "@cycleplatform/cycle-api",
"version": "1.12.1",
"description": "Cycle API Client",
"author": "Petrichor Holdings",
"license": "Apache-2.0",
"main": "dist/index.js",
"umd:main": "dist/node-api-client.umd.production.js",
"module": "dist/node-api-client.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"cycleplatform",
"cycle"
],
"publishConfig": {
"access": "public",
"registry": "http://npm-registry.internal.cycle.io:4873"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"prepublishOnly": "npm run build",
"test": "tsdx test",
"np": "np",
"version": "npm run changelog && git add CHANGELOG.md",
"pub": "export HUSKY=0 && npm run np -- --yolo --any-branch && export HUSKY=1",
"pub:test": "export HUSKY=0 && npm run np -- --preview --yolo --any-branch && export HUSKY=1",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "http://gitlab.petrichor.io/cycle/node-api-client"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/ws": "^7.4.4",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.0",
"np": "^7.5.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"isomorphic-fetch": "2.2.1",
"isomorphic-ws": "4.0.1",
"ws": "^7.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}