-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "nstarter-config",
"version": "0.3.0",
"description": "nstarter 配置加载管理器",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jiandaoyun/nstarter.git",
"directory": "packages/config"
},
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.json && tsc --build tsconfig.esm.json",
"eslint": "eslint --ext .js,.ts --config ../../.eslintrc.js ./src",
"eslint:html": "npm run eslint -- --output-file ./lint/eslint.html --format html",
"test": "nyc --nycrc-path ../../.nycrc mocha --config ../../.mocharc.yml",
"clean": "rimraf dist && rimraf lint && rimraf coverage && rimraf .nyc_output",
"upload": "npm-publish ./"
},
"exports": {
".": {
"default": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"development": "./src/index.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"chokidar": "^3.6.0",
"js-yaml": "4.1.0",
"lodash": "^4.17.21",
"nconf": "0.12.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.7",
"@types/nconf": "^0.10.7"
}
}