-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "@teclone/industries",
"version": "0.0.0-development",
"description": "Exports list of industry categories, reusable for web project implementation",
"publishConfig": {
"access": "public"
},
"types": "build/cjs/index.d.ts",
"main": "build/cjs/index",
"module": "build/es/index",
"author": "Harrison Ifeanyichukwu <[email protected]> (https://github.com/teclone)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/teclone/industries.git"
},
"scripts": {
"commit": "git-cz",
"generateLocales": "node ./scripts/generateLocales",
"test": "yarn generateLocales && BABEL_ENV=test jest -i --detectOpenHandles --forceExit",
"clean": "rimraf ./build",
"build": "yarn clean && yarn generateLocales && rollup-all",
"report-coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"release": "semantic-release"
},
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "^2.0.3",
"@teclone/rollup-all": "^1.26.0",
"@types/jest": "24.0.11",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.6.0",
"babel-jest": "24.3.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"jest": "^29.5.0",
"nodemon": "1.19.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"semantic-release": "^17.0.4",
"semantic-release-cli": "5.4.4",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"build/",
"LICENSE",
"README.md"
]
}