This repository was archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
{
"name": "ns-suitescript-mocks",
"version": "0.2.8",
"description": "Collection of mocks that can be used to improve unit-tests for SuiteScript 2.0.",
"main": "index.js",
"author": "Damian Krolikowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/mycsHQ/ns-suitescript-mocks/issues"
},
"homepage": "https://github.com/mycsHQ/ns-suitescript-mocks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mycsHQ/ns-suitescript-mocks.git"
},
"keywords": [
"NetSuite",
"suitescript",
"JEST",
"Mocks"
],
"engines": {
"node": ">=4.2.4"
},
"scripts": {
"jest": "jest -w 1 --coverage",
"test": "npm run lint && npm run jest",
"lint": "eslint . --fix",
"jestOnly": "jest Examples/Jest/ --coverage --collectCoverageFrom=Examples/Jest/**/*.*",
"mochaOnly": "mocha './Examples/Mocha/**/*.test.*'"
},
"dependencies": {
"codecov": "^3.1.0",
"lodash": "^4.17.10",
"moment": "^2.22.2"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-suitescript": "^0.1.1",
"jest": "^23.6.0",
"jest-cli": "^22.4.0",
"mocha": "^5.2.0",
"sinon": "^7.0.0"
},
"jest": {
"verbose": true,
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testURL": "http://localhost"
}
}