-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "cs101",
"version": "1.4.0",
"description": "Computer Science Data Structured and Algorithms in JavaScript ( Node.JS, ES ) in simple, clean, reusable code",
"main": "src/index.js",
"type": "module",
"scripts": {
"save-test": "node -r esm src/test.js > testout.txt",
"browser-test": "serve -p 8080",
"test": "nodemon -r esm src/test.js",
"lint": "npx eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c9fe/cs.js.git"
},
"keywords": [
"computer science",
"data structures",
"algorithms",
"simple",
"clean",
"reusable"
],
"author": "@dosy",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/c9fe/cs.js/issues"
},
"homepage": "https://github.com/c9fe/cs.js#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.13.8",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"eslint": "^7.20.0",
"esm": "^3.2.25",
"nodemon": "^2.0.7",
"webpack-cli": "^4.9.2"
}
}