-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·51 lines (51 loc) · 1.54 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
{
"name": "luna-testing",
"version": "1.8.0",
"description": "A simple, modern, opinionated unit testing framework",
"homepage": "https://craig.is/testing/code",
"bugs": "https://github.com/ccampbell/luna/issues",
"bin": {
"luna": "./bin/luna.js"
},
"scripts": {
"pretest": "npm run lint && npm run test_browser",
"test_browser": "bin/luna.js test/test-luna.js test/svelte -x --svelte=test/svelte/components/*.svelte",
"test": "bin/luna.js test/*.js -n",
"build": "rollup src/luna.js -e magic-string,progress,chalk -o bin/luna.js -f cjs --banner \"#!/usr/bin/env node\n/* Luna v$npm_package_version */\"",
"lint": "eslint -c .eslintrc src",
"preversion": "npm test",
"version": "npm run build && git add bin/luna.js"
},
"keywords": [
"unit",
"test",
"tests",
"testing"
],
"author": "Craig Campbell",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"ci-info": "^3.7.1",
"escodegen": "^2.0.0",
"eslint": "^8.31.0",
"esprima": "^4.0.1",
"express": "^4.17.1",
"istanbul-api": "^3.0.0",
"istanbul-lib-coverage": "^3.2.0",
"magic-string": "^0.27.0",
"progress": "^2.0.3",
"puppeteer": "^19.5.2",
"rollup": "^2.79.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svelte": "^7.1.0",
"source-map": "^0.7.4",
"svelte": "^3.37.0",
"v8-to-istanbul": "^2.1.0",
"walk": "^2.3.15",
"yargs": "^17.6.2"
}
}