@studyportals/static-domain-data 5.3.2 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +54 -54
- package/src/countries/countries.js +451 -449
- package/src/countries/countries.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@studyportals/static-domain-data",
|
|
3
|
-
"version": "
|
|
4
|
-
"exports": {
|
|
5
|
-
"./*": "./src/*.js"
|
|
6
|
-
},
|
|
7
|
-
"typesVersions": {
|
|
8
|
-
"*": {
|
|
9
|
-
"*": [
|
|
10
|
-
"./src/*"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"description": "Package that allows to keep static data from SP domain (disciplines, countries...) in a centralized place",
|
|
15
|
-
"scripts": {
|
|
16
|
-
"test": "npm run compile-data && mocha \"test/**/*Test.ts\"",
|
|
17
|
-
"prepare-deployment": "npm run compile-data && npm run build && cp package.json bin/package.json",
|
|
18
|
-
"compile-data": "ts-node compile",
|
|
19
|
-
"deploy-patch": "npm version patch && npm run deploy",
|
|
20
|
-
"deploy-minor": "npm version minor && npm run deploy",
|
|
21
|
-
"deploy-major": "npm version major && npm run deploy",
|
|
22
|
-
"deploy": "npm run prepare-deployment && npm publish ./bin",
|
|
23
|
-
"deploy-initial": "npm run prepare-deployment && npm publish ./bin --access=public",
|
|
24
|
-
"deploy-beta": "npm version prerelease && npm run prepare-deployment && npm publish ./bin --tag beta --access=public",
|
|
25
|
-
"build": "rm -rf bin && tsc && rm -rf bin/test"
|
|
26
|
-
},
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/studyportals/static-domain-data.git"
|
|
30
|
-
},
|
|
31
|
-
"author": "SP - The Jedi Council",
|
|
32
|
-
"license": "BSD-3-Clause",
|
|
33
|
-
"bugs": {
|
|
34
|
-
"url": "https://github.com/studyportals/static-domain-data/issues"
|
|
35
|
-
},
|
|
36
|
-
"homepage": "https://github.com/studyportals/static-domain-data#readme",
|
|
37
|
-
"engines": {
|
|
38
|
-
"npm": ">=10",
|
|
39
|
-
"node": ">=20"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@testdeck/mocha": "^0.1.2",
|
|
43
|
-
"@types/chai": "^4.2.22",
|
|
44
|
-
"@types/mocha": "^9.0.0",
|
|
45
|
-
"chai": "^4.3.4",
|
|
46
|
-
"mocha": "^9.1.3",
|
|
47
|
-
"ts-node": "^10.4.0",
|
|
48
|
-
"typemoq": "^2.1.0",
|
|
49
|
-
"typescript": "^5.5.4"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@studyportals/multiselect": "^4.2.0"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@studyportals/static-domain-data",
|
|
3
|
+
"version": "6.0.0",
|
|
4
|
+
"exports": {
|
|
5
|
+
"./*": "./src/*.js"
|
|
6
|
+
},
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
"*": {
|
|
9
|
+
"*": [
|
|
10
|
+
"./src/*"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"description": "Package that allows to keep static data from SP domain (disciplines, countries...) in a centralized place",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"test": "npm run compile-data && mocha \"test/**/*Test.ts\"",
|
|
17
|
+
"prepare-deployment": "npm run compile-data && npm run build && cp package.json bin/package.json",
|
|
18
|
+
"compile-data": "ts-node compile",
|
|
19
|
+
"deploy-patch": "npm version patch && npm run deploy",
|
|
20
|
+
"deploy-minor": "npm version minor && npm run deploy",
|
|
21
|
+
"deploy-major": "npm version major && npm run deploy",
|
|
22
|
+
"deploy": "npm run prepare-deployment && npm publish ./bin",
|
|
23
|
+
"deploy-initial": "npm run prepare-deployment && npm publish ./bin --access=public",
|
|
24
|
+
"deploy-beta": "npm version prerelease && npm run prepare-deployment && npm publish ./bin --tag beta --access=public",
|
|
25
|
+
"build": "rm -rf bin && tsc && rm -rf bin/test"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/studyportals/static-domain-data.git"
|
|
30
|
+
},
|
|
31
|
+
"author": "SP - The Jedi Council",
|
|
32
|
+
"license": "BSD-3-Clause",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/studyportals/static-domain-data/issues"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/studyportals/static-domain-data#readme",
|
|
37
|
+
"engines": {
|
|
38
|
+
"npm": ">=10",
|
|
39
|
+
"node": ">=20"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@testdeck/mocha": "^0.1.2",
|
|
43
|
+
"@types/chai": "^4.2.22",
|
|
44
|
+
"@types/mocha": "^9.0.0",
|
|
45
|
+
"chai": "^4.3.4",
|
|
46
|
+
"mocha": "^9.1.3",
|
|
47
|
+
"ts-node": "^10.4.0",
|
|
48
|
+
"typemoq": "^2.1.0",
|
|
49
|
+
"typescript": "^5.5.4"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@studyportals/multiselect": "^4.2.0"
|
|
53
|
+
}
|
|
54
|
+
}
|