-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
54 lines (54 loc) · 1.82 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
{
"name": "argos-saleslogix",
"version": "4.4.0",
"repository": {
"type": "git",
"url": "https://github.com/Saleslogix/argos-saleslogix"
},
"scripts": {
"test": "grunt --force test",
"less": "grunt less",
"start": "node --max-http-header-size=81920 scripts/server.js",
"build": "babel src --out-dir src-out",
"build:watch": "babel src --out-dir src-out --watch",
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src",
"watch": "yarn run build:watch",
"doc": "jsdoc --configure ./src-docs/conf.json",
"e2e": "mocha --async-only --allow-uncaught --timeout 100000 --globals page,browser --require ./tests/e2e/hooks.js --recursive ./tests/e2e",
"e2e:debug": "@powershell -Command $env:DEBUG='e2e';yarn run e2e"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"chai": "^4.3.4",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"express": "^4.17.1",
"grunt": "^1.4.1",
"grunt-argos-deps": "git+https://[email protected]/Saleslogix/grunt-argos-deps.git#v0.1.5",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^2.2.0",
"grunt-contrib-less": "2.1.0",
"grunt-shell": "^3.0.1",
"http-proxy": "^1.18.1",
"jsdoc": "^3.6.7",
"less": "3.13.1",
"less-loader": "7.3.0",
"mocha": "^8.4.0",
"playwright": "^1.11.1",
"serve-index": "^1.9.1"
},
"dependencies": {}
}