-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 861 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 861 Bytes
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
{
"name": "basho-eval",
"version": "8.0.8",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"author": "Jeswin Kumar<jeswinpk@agilehead.com>",
"repository": {
"type": "git",
"url": "https://github.com/bashojs/basho-eval"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && mkdir -p dist/test && npx tsc && cp src/test/square.js dist/test/",
"test": "mocha dist/test/test.js"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"lazily-async": "^2.0.5",
"node-fetch": "^3.3.2",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^24.1.0",
"@types/should": "^13.0.0",
"mocha": "^11.7.1",
"rimraf": "^6.0.1",
"should": "^13.2.3",
"typescript": "^5.9.2"
},
"license": "MIT"
}