-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.47 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
{
"name": "nrf-config-diff-cli",
"version": "1.0.11",
"description": "Config diff calculation for NRF SDK",
"repository": "git@github.com:lybrus/nrf-config-diff-cli.git",
"author": "Damir Rashidov <damir@rashidov.eu>",
"license": "MIT",
"files": [
"dist",
"bin"
],
"keywords": [
"nrf",
"sdk",
"cli"
],
"scripts": {
"start": "nodemon --exec babel-node src/index.js --port 57689",
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build": "rollup -c",
"test": "dotenv -e .env.test jest --detectOpenHandles",
"test:staged": "dotenv -e .env.test jest --findRelatedTests",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "yarn lint -- --fix",
"prettier": "prettier '**/*' --write",
"script": "babel-node src/script.js",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-root-import": "^6.5.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"rollup": "^2.6.0",
"rollup-plugin-babel": "^4.4.0",
"shell-exec": "^1.0.2"
},
"dependencies": {
"autocast": "^0.0.4",
"command-line-args": "^5.1.1",
"inquirer": "^7.1.0",
"strsplit": "^1.0.0"
},
"bin": {
"nrf-config-diff": "./bin/global.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"npm run lint:fix"
]
}
}