-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
98 lines (98 loc) · 2.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sazerac",
"version": "2.0.0",
"author": {
"email": "[email protected]",
"name": "Mike Calvanese",
"url": "https://github.com/mikec"
},
"browser": "dist/sazerac.js",
"main": "lib/main.js",
"typings": "types/main.d.ts",
"files": [
"dist",
"lib",
"src",
"types"
],
"repository": "sazeracjs/sazerac",
"keywords": [
"jasmine",
"mocha",
"jest",
"assertions",
"unit-testing",
"data-driven-tests"
],
"bugs": {
"url": "https://github.com/sazeracjs/sazerac/issues"
},
"license": "MIT",
"dependencies": {
"deep-eql": "^4.0.0",
"lodash.at": "^4.6.0",
"lodash.concat": "^4.5.0",
"lodash.filter": "^4.6.0",
"lodash.isfunction": "^3.0.9",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.keys": "^4.2.0",
"lodash.toarray": "^4.4.0",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.10.0",
"jasmine": "^3.5.0",
"jest": "^25.5.3",
"karma": "^5.0.4",
"karma-babel-preprocessor": "^8.0.1",
"karma-jasmine": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^8.1.3",
"sinon": "^9.0.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"scripts": {
"init": "eslint --init",
"lint": "eslint src test",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "npm run test:e2e-jasmine && npm run test:e2e-mocha && npm run test:e2e-jest",
"test:e2e-jasmine": "karma start test/e2e/config/karma-jasmine.conf.js",
"test:e2e-mocha": "karma start test/e2e/config/karma-mocha.conf.js",
"test:e2e-jest": "jest",
"test:unit": "BABEL_ENV=test NODE_PATH=$NODE_PATH:$PWD/src mocha test/unit --require @babel/register --recursive",
"check": "npm run lint && npm run test",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=dev webpack src/main.js --output dist/sazerac.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=prod webpack src/main.js --output dist/sazerac.min.js",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"prepare": "npm run build"
},
"engine": {
"node": ">= 10"
},
"jest": {
"testRegex": "/test/e2e/spec/.*",
"moduleNameMapper": {
"sazerac": "<rootDir>/src/main.js"
}
}
}