-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 964 Bytes
/
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
{
"name": "mixmatch",
"version": "0.0.4",
"description": "Yet Another Mixin",
"homepage": "http://github.com/fulcrumapp/mixmatch",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && mocha -r ts-node/register test/test.js",
"prepublish": "npm run lint && npm run clean && npm run build",
"lint": "eslint src",
"build": "tsc",
"clean": "rm -rf dist"
},
"author": "Fulcrum",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/fulcrumapp/mixmatch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {},
"keywords": [
"mixin"
]
}