-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.17 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
{
"name": "@nornir/{{name}}",
"description": "A nornir library",
"version": "1.0.0",
"dependencies": {
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@nrfcloud/ts-json-schema-transformer": "^0.2.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.2",
"esbuild": "^0.17.15",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"ts-patch": "3.0.2",
"typescript": "5.4.2"
},
"engines": {
"node": ">=18.0.0",
"npm": "please use pnpm",
"pnpm": ">=6.32.4",
"yarn": "please use pnpm"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"package.json",
"README.md"
],
"license": "MIT",
"peerDependencies": {
},
"scripts": {
"//10": "The following scripts are also available from the scripts package",
"//20": "You can also override them by specifying them here",
"//30": "",
"//40": "compile - compile the project including dependencies",
"//50": "compile:tests - compile the tests including dependencies",
"//60": "clean - clean the project including dependencies",
"//70": "bundle - bundle the project including dependencies",
"//80": "tests - run the tests",
"//90": "tests:clean - cleans artifacts before running tests",
"//91": "lint - run the linter",
"//92": "lint:fix - run the linter and fix any issues",
"//93": "build - compile and bundle the project",
"//94": "build:clean - clean the project then compile and bundle",
"//95": "---",
"//96": "The following scripts are specific to this project",
"//97": "Notice that scripts for this specific project are suffixed with :single",
"//98": "This is so the default scripts are project aware",
"//99": "",
"clean:single": "rm -rf dist bundle __tests__/dist .turbo",
"compile:single": "tsc",
"compile:single:tests": "tsc -p __tests__/tsconfig.json",
"compile:single:watch": "pnpm compile:single --incremental -w & pnpm compile:single:tests -w --incremental",
"prepare": "patch-typescript",
"prepublish": "pnpm build:clean",
"test": "pnpm tests"
},
"type": "module",
"repository": "nrfcloud/account-service"
}