-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.45 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
{
"name": "concordialang-codeceptjs-core",
"version": "1.5.2",
"description": "Concordia compiler plug-in core for CodeceptJS",
"license": "AGPL-3.0",
"readme": "readme.md",
"homepage": "https://github.com/thiagodp/concordialang-codeceptjs-core",
"author": {
"name": "Thiago Delgado Pinto",
"email": "thiago-dp@bol.com.br"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodp/concordialang-codeceptjs-core.git"
},
"bugs": {
"url": "https://github.com/thiagodp/concordialang-codeceptjs-core/issues"
},
"keywords": [
"concordialang",
"concordia-lang",
"concordia",
"codeceptjs",
"test",
"script",
"e2e",
"plugin",
"plug-in"
],
"main": "dist",
"types": "dist",
"files": [
"dist/*"
],
"scripts": {
"switch:un": "npm uninstall concordialang-types concordialang-plugin",
"switch:local": "npm run switch:un && npm i ../concordialang-types && npm i ../concordialang-plugin",
"switch:web": "npm run switch:un && npm i concordialang-types concordialang-plugin",
"clear": "rimraf dist",
"prebuild": "npm run clear",
"build": "tsc && cpy src/cjs.js dist/",
"watch": "tsc --watch",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"cov": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"all": "npm run build && npm run test",
"preversion": "npm run all",
"postversion": "echo \"Rebase is recommended. Don't forget to push the tags.\" && git log --oneline"
},
"dependencies": {
"chalk": "^3.0.0",
"codeceptjs": "^3.2.3",
"codeceptjs-cmdhelper": "^2.4.0",
"codeceptjs-dbhelper": "^1.2.2",
"concordialang-plugin": "^1.3.1",
"concordialang-types": "^2.1.6",
"dedent-js": "^1.0.1",
"figures": "^3.2.0",
"log-symbols": "^3.0.0",
"mocha": "^9.1.1",
"mochawesome": "^6.3.1",
"mustache": "^2.3.0",
"node-fs-extra": "^0.8.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "10",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"jest": "^27.2.5",
"jest-extended": "^1.0.0",
"memfs": "^2.17.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}