-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "@necode-org/mike",
"version": "0.3.8",
"author": {
"name": "Trevor Paley",
"url": "https://github.com/TheUnlocked"
},
"repository": {
"type": "git",
"url": "https://github.com/TheUnlocked/mike-language.git"
},
"files": [
"./dist/**"
],
"license": "MIT",
"scripts": {
"prepublishOnly": "do not use `npm publish`, use `npm run publish` instead.",
"prepack": "npm run clean && tsc && node ./prepack.mjs",
"pack": "npm pack ./dist",
"publish": "npm run test && npm run prepack && cd ./dist && npm publish",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"test": "mocha",
"test:watch": "mocha --watch",
"coverage": "c8 --reporter=lcov mocha",
"coverage:watch": "nodemon --exec c8 --reporter=lcov mocha"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"lodash": "^4.17.21",
"reserved-words": "^0.1.2"
},
"devDependencies": {
"@brillout/load-module": "github:brillout/load-module",
"@types/chai": "^4.3.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/omit-deep-lodash": "^1.1.1",
"@types/reserved-words": "^0.1.0",
"c8": "^7.11.3",
"chai": "^4.3.6",
"chai-exclude": "^2.1.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"omit-deep-lodash": "^1.1.7",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"typescript": "^5.4.3"
}
}