-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "@blued-core/client",
"version": "0.1.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"start": "NODE_ENV=test node dist",
"start-pro": "NODE_ENV=local node dist",
"prepare": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@blued-core/cache-intl": "^0.1.0",
"@blued-core/client-intl": "^0.1.0",
"@blued-core/conf-intl": "^0.1.1"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"chai": "^4.2.0",
"commitizen": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-blued-typescript": "^1.0.1",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.1.4",
"ts-node": "^8.0.3",
"typescript": "^3.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}