-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
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
{
"name": "finalskiplist",
"version": "1.0.2",
"homepage": "https://github.com/SonahtQ/FinalSkipList",
"repository": {
"type": "git",
"url": "git://github.com/SonahtQ/FinalSkipList.git"
},
"author": "Github users: @SonahtQ",
"description": "Fast & fully-featured skip list data structure for JavaScript and TypeScript.",
"exports": {
"import": "./dist/import/index.js",
"require": "./dist/require/index.js"
},
"scripts": {
"buildjs_browser": "set NODE_ENV=production&&npx webpack",
"buildjs_require": "npx tsc --project ./tsconfig-require.json --declaration",
"buildjs_import": "npx tsc --project ./tsconfig-import.json --declaration",
"build": "npm run buildjs_browser && npm run buildjs_require && npm run buildjs_import",
"test": "jest --passWithNoTests"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@webpack-cli/generators": "^3.0.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
}
}