-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "e-mission-common",
"type": "module",
"version": "0.6.3",
"description": "A common library to share code between projects in the e-mission-platform. Written in Python and exposed as both Python and JavaScript.",
"main": "./emcommon_js/index.js",
"types": "./emcommon_js/dist/index.d.ts",
"jest": {
"testMatch": [
"**/test_*.js"
],
"globals": { "window": {} },
"transform": {}
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": true,
"endOfLine": "lf",
"semi": true
},
"dependencies": {
"color": "^3.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mapshaper": "^0.6.99",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JGreenlee/e-mission-common.git"
},
"author": "Jack Greenlee",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/e-mission/e-mission-docs/issues"
},
"homepage": "https://github.com/JGreenlee/e-mission-common#readme"
}