-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 1.73 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": "datashoplogger",
"version": "0.1.0",
"license": "MIT",
"description": "A reference implementation of a client-side library that exposes an API that logs to DataShop",
"repository": {
"type": "git",
"url": "Simon-Initiative/DataShopLogger.git"
},
"keywords": [
"webpack",
"es6",
"library",
"cmu",
"ctat",
"oli",
"eberly",
"simon initiative",
"datashop",
"logging"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.3.7",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^4.3.0",
"jquery": "^3.6.3",
"mocha": "^6.2.3",
"node-gyp": "^5.1.1",
"tar": "^4.4.19",
"url-loader": "^2.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"scripts": {
"build": "webpack -p --config webpack.prod.js",
"dev": "webpack --progress --colors --watch --config webpack.dev.js",
"test": "mocha --require babel-core/register --colors ./test/*.spec.js || true",
"test:debug": "mocha --inspect-brk --require babel-core/register --colors ./test/*.spec.js || true",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js || true",
"clean": "rm -rf lib/*.js && rm -rf lib/*.map && rm -rf node_modules && rm -rf *~ && find . -type f -name '*.DS_Store' -delete"
},
"dependencies": {
"axios": "^0.19.2",
"npm": "^6.14.18",
"xmlhttprequest": "^1.8.0"
}
}