-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "cityworks",
"version": "1.0.6",
"description": "A Cityworks API wrapper",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.ts",
"files": [
"dist/*"
],
"directories": {
"test": "test"
},
"scripts": {
"dev": "microbundle watch",
"build": "microbundle",
"test": "mocha -R spec --recursive ./test/ -g ",
"fulltest": "mocha -R spec --recursive ./test/",
"docs": "./node_modules/typedoc/bin/typedoc --tsconfig ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walker/cityworks.git"
},
"keywords": [
"cityworks",
"api",
"wrapper",
"government",
"local",
"asset"
],
"author": "Walker",
"license": "MIT",
"bugs": {
"url": "https://github.com/walker/cityworks/issues"
},
"homepage": "https://walker.github.io/cityworks/",
"devDependencies": {
"chai": "*",
"chai-as-promised": "~7.1.1",
"dotenv": "~16.0.0",
"jsdoc-to-markdown": "~8.0.0",
"microbundle": "~0.15.1",
"mocha": "~10.2.0",
"typedoc": "~0.23.24",
"typescript": "^4.9.5",
"winston": "~3.8.2"
},
"dependencies": {
"axios": "^1.6.0",
"form-data": "^4.0.0",
"lodash": "~4.17.21",
"mime-types": "^2.1.35",
"reversible-map": "~1.0.1"
}
}