-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
109 lines (109 loc) · 3.16 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "unexpected",
"version": "13.2.1",
"author": "Sune Sloth Simonsen <[email protected]>",
"keywords": [
"assertion",
"test",
"assert"
],
"license": "MIT",
"bugs": "https://github.com/unexpectedjs/unexpected/issues",
"repository": {
"type": "git",
"url": "https://github.com/unexpectedjs/unexpected"
},
"scripts": {
"prepare": "make build/lib",
"test": "make test && make test-chrome-headless",
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "evaldown --comment-marker unexpected-markdown --require ./bootstrap-unexpected-markdown.js --inplace ./documentation",
"version": "(test -n \"${IS_MAKE_RELEASE}\" || (echo Please run make release instead && exit 1)) && offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"main": "./build/lib/index.js",
"dependencies": {
"array-changes": "3.0.1",
"array-changes-async": "3.0.1",
"detect-indent": "3.0.1",
"diff": "^5.0.0",
"greedy-interval-packer": "1.2.0",
"magicpen": "^6.2.4",
"ukkonen": "^2.1.0",
"unexpected-bluebird": "2.9.34-longstack2"
},
"devDependencies": {
"buble": "^0.20.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"evaldown": "^2.0.0",
"find-node-modules": "^2.0.0",
"fugl": "^2.0.0",
"gh-pages": "^3.0.0",
"hyperlink": "^5.0.0",
"istanbul": "^0.4.5",
"jasmine": "^4.1.0",
"jasmine-core": "^4.0.0",
"jest": "^26.6.3",
"karma": "^6.3.16",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "2.0.1",
"minimist": "^1.2.0",
"mocha": "^8.2.1",
"mocha-slow-reporter": "^*",
"node-version-check": "^2.2.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.6.1",
"prettier": "~2.5.0",
"rollup": "^2.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "^7.0.0",
"rsvp": "^4.7.0",
"serve": "*",
"tap-spot": "^1.1.1",
"unexpected-documentation-site-generator": "^8.0.0",
"unexpected-magicpen": "^3.0.0"
},
"files": [
"unexpected.js",
"unexpected.js.map",
"unexpected.esm.js",
"unexpected.esm.js.map",
"lib",
"build/lib"
],
"jspm": {
"dependencies": {},
"main": "unexpected.js",
"jspmPackage": true
},
"jest": {
"setupFiles": [
"<rootDir>/test/promisePolyfill"
],
"setupFilesAfterEnv": [
"<rootDir>/test/common.js"
],
"testMatch": [
"<rootDir>/test/*.spec.js",
"<rootDir>/test/**/*.spec.js"
],
"testPathIgnorePatterns": [
"<rootDir>/test/external.spec.js"
],
"testURL": "http://localhost/",
"transformIgnorePatterns": [
"(?:)"
]
}
}