-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.04 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": "@sdgindex/data",
"version": "4.1.3",
"description": "",
"main": "cjs/index.js",
"module": "es/index.js",
"sideEffects": false,
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "trash cjs/* && cross-env NODE_ENV=cjs babel src --out-dir cjs",
"build:es": "trash es/* && cross-env NODE_ENV=es babel src --out-dir es",
"test": "jest --config=jest.config.js",
"test:production": "jest --config=jest.production.config.js",
"docs": "npx esdoc",
"prepare": "npm run build && husky install",
"release": "np"
},
"keywords": [],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "",
"license": "ISC",
"files": [
"assessments",
"observations",
"timeseries",
"regions",
"parse",
"sdgs",
"cjs",
"es"
],
"browser": {
"path": false,
"fs-extra": false
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"babel-jest": "^29.6.2",
"cross-env": "^7.0.3",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.26.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-react": "^7.23.2",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^11.0.0",
"lodash": "^4.17.21",
"np": "^9.2.0",
"prettier": "2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tmp": "^0.2.1",
"trash-cli": "^5.0.0"
},
"dependencies": {
"fs-extra": "^9.1.0",
"lodash.countby": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.isplainobject": "^4.0.6",
"lodash.uniq": "^4.5.0",
"url-slug": "^4.0.1",
"xlsx": "^0.18.5"
}
}