-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "mojiscript",
"version": "0.13.13",
"description": "MojiScript is an Async First, opinionated, and functional language designed to have 100% compatibility with JavaScript engines.",
"author": "Joel Thoms",
"license": "MIT",
"homepage": "https://mojiscript.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/joelnet/MojiScript.git"
},
"bugs": {
"url": "https://github.com/joelnet/MojiScript/issues"
},
"main": "index.js",
"scripts": {
"build": "moji build .",
"test": "jest",
"test:coverage": "jest --colors --coverage",
"test:coveralls": "npm run test:coverage -- --coverageReporters=text-lcov | coveralls",
"patch-readme": "node --experimental-modules --no-warnings bin/patch-readme/index.mjs",
"watch": "moji watch",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"docz:clean": "rm -rf .docz/ static/ assets.json index.html",
"docz:dev": "docz dev",
"docz:build": "npm run docz:clean && docz build && mv .docz/dist/* ."
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.4",
"all-contributors-cli": "^6.16.1",
"axios": "^0.21.1",
"coveralls": "^3.1.0",
"docz": "^2.3.1",
"docz-theme-default": "^1.2.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-mojiscript": "1.2.0",
"eslint-plugin-better": "0.1.5",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"mojiscript-cli": "0.0.3",
"sanctuary": "^3.0.0"
},
"peerDependencies": {
"axios": "^0.19.0"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx,mjs}",
"!coverage/**",
"!examples/**",
"!_internal/debug/**",
"!.docz/**",
"!static/**",
"!doczrc.js",
"!index.js"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run test:coverage",
"pre-push": "npm run build && npm run test:coverage"
}
}
}