forked from joelnet/MojiScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.19 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
{
"name": "mojiscript",
"version": "0.12.3",
"description": "MojiScript is an Async First, opinionated, and functional language designed to have 100% compatibility with JavaScript engines.",
"repository": {
"type": "git",
"url": "git+https://github.com/joelnet/MojiScript.git"
},
"author": "Joel Thoms",
"license": "MIT",
"bugs": {
"url": "https://github.com/joelnet/MojiScript/issues"
},
"homepage": "https://github.com/joelnet/MojiScript#readme",
"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": {
"all-contributors-cli": "^5.4.1",
"axios": "^0.18.0",
"coveralls": "^3.0.2",
"docz": "^0.12.9",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-mojiscript": "1.2.0",
"eslint-plugin-better": "0.1.5",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prefer-arrow": "1.1.3",
"husky": "^1.1.3",
"jest": "^23.6.0",
"mojiscript-cli": "0.0.3",
"sanctuary": "^0.15.0"
},
"peerDependencies": {
"axios": "^0.18.0"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx,mjs}",
"!coverage/**",
"!examples/**",
"!_internal/debug/**",
"!.docz/**",
"!static/**",
"!doczrc.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"
}
}
}