-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "given2",
"version": "2.1.7",
"main": "src/given.js",
"description": "Lazy variable evaluation for Jasmine, Mocha, Jest specs, inspired by Rspec's let",
"homepage": "https://github.com/tatyshev/given2",
"repository": {
"type": "git",
"url": "git@github.com:tatyshev/given2.git"
},
"author": "Ruslan Tatyshev <ruslan.tatyshev@gmail.com>",
"license": "MIT",
"scripts": {
"test": "npm run test:jest && npm run test:jest-setup && npm run test:jasmine && npm run test:mocha",
"test:jest": "jest --testPathIgnorePatterns .global",
"test:jest-setup": "jest specs/given.global.spec.js --setupTestFrameworkScriptFile=./setup.js",
"test:jasmine": "jasmine specs/given.spec.js",
"test:mocha": "mocha specs/given.mocha.js",
"lint": "eslint src/**/*.js specs/**/*.js",
"deploy": "webpack && npm publish"
},
"jest": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"<rootDir>/specs/*.spec.js",
"<rootDir>/specs/*.spec.ts"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"devDependencies": {
"@types/jest": "^24.0.17",
"chai": "^4.2.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.9.0",
"jasmine": "^3.0.0",
"jest": "^23.6.0",
"mocha": "^5.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.2"
}
}