-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
93 lines (93 loc) · 2.76 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
{
"name": "@itslanguage/sdk",
"version": "5.0.0",
"private": true,
"description": "The JavaScript monorepo for ITSLanguage.",
"engines": {
"node": ">= 8"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"npmcheckversion": "node ./scripts/npmcheckversion.js",
"preinstall": "$npm_execpath run npmcheckversion",
"build": "node ./scripts/packer/build.js",
"build:clean": "rimraf ./build",
"lint": "$npm_execpath run lint:js",
"lint:eslint": "eslint",
"lint:eslint:fix": "eslint --fix",
"lint:js": "$npm_execpath run lint:eslint .",
"lint:staged": "lint-staged",
"test": "cross-env NODE_ENV=test karma start --single-run --color",
"test:clean": "rimraf ./coverage",
"clean:all": "$npm_execpath run build:clean && $npm_execpath run test:clean",
"prettify": "prettier --write"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add --force"
],
"*.{json,md,yml.yaml,css}": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"author": "ITSLanguage (https://www.itslanguage.nl) <[email protected]>",
"contributors": [
"Mathijs van den Worm <[email protected]>",
"Jogchum Koerts <[email protected]>",
"Loek Ehren <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/itslanguage/itslanguage-js.git"
},
"bugs": {
"url": "https://github.com/itslanguage/itslanguage-js/issues"
},
"homepage": "https://github.com/itslanguage/itslanguage-js#readme",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.7",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/preset-env": "7.7.7",
"@babel/runtime": "7.7.7",
"babel-eslint": "10.0.3",
"babel-plugin-istanbul": "6.0.0",
"babelify": "10.0.0",
"browserify": "16.5.0",
"core-js": "3.6.2",
"cross-env": "6.0.3",
"docdash": "1.1.1",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jasmine": "^4.1.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "8.1.0",
"jasmine-ajax": "4.0.0",
"jasmine-core": "3.5.0",
"jsdoc": "^3.6.11",
"karma": "^6.1.1",
"karma-browserify": "^8.0.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.1",
"karma-jasmine": "3.0.1",
"lint-staged": "9.5.0",
"ncp": "2.0.0",
"pre-commit": "1.2.2",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"watchify": "^4.0.0",
"webpack": "4.41.5"
}
}