-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.99 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.99 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nace-codes",
"version": "1.0.3",
"description": "TypeScript library for NACE and NACEBEL economic activity classification codes",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.js"
},
"./nace": {
"types": "./dist/src/nace-only.d.ts",
"import": "./dist/nace.js"
},
"./nacebel": {
"types": "./dist/src/nacebel-only.d.ts",
"import": "./dist/nacebel.js"
}
},
"files": [
"dist"
],
"scripts": {
"generate:data": "tsx scripts/generateDataModules.ts",
"build": "bun scripts/build.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ingram-technologies/nace-codes.git"
},
"keywords": [
"nace",
"nacebel",
"classification",
"economic-activity",
"europe",
"belgium"
],
"prettier": {
"trailingComma": "all",
"printWidth": 88,
"useTabs": true,
"tabWidth": 4,
"experimentalOperatorPosition": "start",
"plugins": [
"prettier-plugin-organize-imports"
]
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ingram-technologies/nace-codes/issues"
},
"homepage": "https://github.com/ingram-technologies/nace-codes#readme",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/bun": "^1.2.20",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.9",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}