forked from Cox-Automotive/alks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.24 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
{
"name": "alks.js",
"version": "1.9.3",
"description": "JavaScript client for the ALKS API, usable in both modern browsers and node.js",
"main": "dist/alks.cjs.js",
"types": "index.d.ts",
"unpkg": "dist/alks.min.js",
"browser": "dist/alks.umd.js",
"module": "dist/alks.esm.js",
"scripts": {
"rmdirs": "rimraf lib dist/*.js",
"mkdirs": "mkdirp lib dist",
"clean": "npm run rmdirs && npm run mkdirs",
"rollup": "rollup -c rollup.config.js",
"minify": "uglifyjs -mc < dist/alks.umd.js > dist/alks.min.js",
"prepublish": "npm run build && npm run docs",
"build": "npm run clean && npm run rollup && npm run minify",
"lint": "eslint src/*.js test/*.js",
"test": "npm run build && npm run lint && npm run mocha && npm run karma",
"mocha": "nyc mocha test/test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"karma": "karma start",
"docs": "jsdoc2md --param-list-format list --property-list-format list --example-lang js src/alks.js > API.md"
},
"files": [
"lib",
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/Cox-Automotive/alks.js.git"
},
"author": {
"name": "Cox Automotive",
"email": "[email protected]",
"url": "https://github.com/Cox-Automotive/"
},
"bugs": {
"url": "https://github.com/Cox-Automotive/alks.js/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"node-fetch": "^2.3.0"
},
"devDependencies": {
"browserify": "^16.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-plugin-jsdoc": "^4.1.1",
"fetch-mock": "^7.3.1",
"jsdoc-to-markdown": "^5.0.0",
"karma": "^4.4.1",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mkdirp": "^0.5.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"rollup": "^1.6.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-replace": "^2.1.0",
"sinon": "^7.2.7",
"uglify-js": "^3.4.9",
"watchify": "^3.11.1"
}
}