UNPKG

2.25 kBJSONView Raw
1{
2 "name": "jasmine-core",
3 "license": "MIT",
4 "version": "3.5.0",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/jasmine/jasmine.git"
8 },
9 "keywords": [
10 "test",
11 "jasmine",
12 "tdd",
13 "bdd"
14 ],
15 "scripts": {
16 "posttest": "eslint src/**/*.js spec/**/*.js && prettier --check src/**/*.js spec/**/*.js",
17 "test": "grunt --stack execSpecsInNode",
18 "cleanup": "prettier --write src/**/*.js spec/**/*.js",
19 "build": "grunt buildDistribution",
20 "serve": "node spec/support/localJasmineBrowser.js",
21 "serve:performance": "node spec/support/localJasmineBrowser.js jasmine-browser-performance.json",
22 "ci": "node spec/support/ci.js",
23 "ci:performance": "node spec/support/ci.js jasmine-browser-performance.json"
24 },
25 "description": "Official packaging of Jasmine's core files for use by Node.js projects.",
26 "homepage": "https://jasmine.github.io",
27 "main": "./lib/jasmine-core.js",
28 "devDependencies": {
29 "acorn": "^6.0.0",
30 "ejs": "^2.5.5",
31 "eslint": "^5.16.0",
32 "express": "^4.16.4",
33 "fast-glob": "^2.2.6",
34 "grunt": "^1.0.4",
35 "grunt-cli": "^1.3.2",
36 "grunt-contrib-compress": "^1.3.0",
37 "grunt-contrib-concat": "^1.0.1",
38 "grunt-css-url-embed": "^1.11.1",
39 "grunt-sass": "^3.0.2",
40 "jasmine": "^3.4.0",
41 "jasmine-browser-runner": "0.3.0",
42 "jsdom": "^15.0.0",
43 "load-grunt-tasks": "^4.0.0",
44 "node-sass": "^4.11.0",
45 "prettier": "1.17.1",
46 "selenium-webdriver": "^3.6.0",
47 "shelljs": "^0.8.3",
48 "temp": "^0.9.0"
49 },
50 "prettier": {
51 "singleQuote": true
52 },
53 "eslintConfig": {
54 "rules": {
55 "quotes": [
56 "error",
57 "single",
58 {
59 "avoidEscape": true
60 }
61 ],
62 "no-unused-vars": [
63 "error",
64 {
65 "args": "none"
66 }
67 ],
68 "block-spacing": "error",
69 "comma-dangle": [
70 "error",
71 "never"
72 ],
73 "func-call-spacing": [
74 "error",
75 "never"
76 ],
77 "key-spacing": "error",
78 "no-tabs": "error",
79 "no-trailing-spaces": "error",
80 "no-whitespace-before-property": "error",
81 "semi": [
82 "error",
83 "always"
84 ],
85 "space-before-blocks": "error"
86 }
87 }
88}