This repository was archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 KB
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
{
"name": "testing-js",
"version": "0.1.1",
"author": "JuanMa Ruiz",
"description": "Simple JS application for playing with different Testing JS Libraries",
"repository": {
"type": "git",
"url": "https://github.com/JuanMaRuiz/testingjs"
},
"scripts": {
"test": "karma start test-examples/jasmine-karma/karma.conf.js",
"generateDoc": "jsdoc -c jsdoc-config.js README-foo.md",
"start": "node index.js",
"jsLint": "eslint --fix ./app/scripts/*.js"
},
"devDependencies": {
"browser-sync": "^2.27.10",
"chai": "^4.2.0",
"eslint-config-google": "^0.14.0",
"grunt": "^1.5.3",
"grunt-browser-sync": "^2.2.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^21.0.0",
"jasmine-core": "^3.3.0",
"jasmine-jquery": "^2.1.1",
"jquery": "^3.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"load-grunt-config": "^3.0.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"time-grunt": "^2.0.0",
"webpack": "4.29.6",
"webpack-cli": "3.2.3"
},
"dependencies": {}
}