-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "@ni/jasmine-parameterized",
"version": "1.0.0",
"description": "A utility to write parameterized jasmine tests",
"keywords": [
"jasmine",
"parameterised",
"parameterized",
"test",
"testing"
],
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"format": "eslint . --fix",
"pack": "npm pack",
"invoke-publish": "npm publish",
"tdd": "npm run build && npm run test",
"test": "npm run test:node && npm run test:browser",
"test:node": "jasmine",
"test:browser": "karma start karma.conf.cjs --browsers=ChromeHeadlessOpt --single-run",
"test:browser:debugger": "karma start karma.conf.cjs --browsers=ChromeDebugging"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ni/nimble.git",
"directory": "packages/jasmine-parameterized"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"types": "./dist/esm/index.d.ts",
"author": "National Instruments",
"license": "MIT",
"devDependencies": {
"@ni-private/eslint-config-nimble": "*",
"@types/jasmine": "^5.1.4",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.2",
"karma": "^6.3.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-spec-reporter": "^0.0.36",
"playwright": "1.44.0",
"typescript": "~5.4.5"
}
}