-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"private": true,
"name": "tech-docs-gem",
"license": "MIT",
"scripts": {
"lint": "standard",
"test": "jasmine-browser-runner runSpecs --config=spec/javascripts/support/jasmine-browser.mjs",
"test-server": "jasmine-browser-runner serve --config=spec/javascripts/support/jasmine-browser.mjs"
},
"dependencies": {
"govuk-frontend": "~5.7.1"
},
"devDependencies": {
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.5.0",
"standard": "^14.3.4"
},
"standard": {
"globals": [
"jasmine",
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"beforeAll",
"it",
"assert",
"expect",
"Document",
"Element",
"Event",
"GOVUK",
"lunr",
"$",
"jQuery",
"_",
"Modernizr",
"history",
"ga",
"GOVUKFrontend"
],
"ignore": [
"lib/assets/javascripts/_vendor/**",
"spec/javascripts/helpers/**",
"spec/javascripts/support/**"
]
}
}