-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
36
37
38
39
40
41
{
"name": "js-son-agent",
"version": "0.0.17",
"description": "JS-son - a Minimal JavaScript BDI Agent Library",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/jasmine/bin/jasmine.js",
"doc": "./node_modules/jsdoc/jsdoc.js src/*",
"lint": "./node_modules/.bin/eslint -c .eslintrc.yml \"./**/*.js\"",
"build": "npx webpack",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimKam/js-son.git"
},
"keywords": [
"Agents",
"BDI",
"JavaScript"
],
"author": "Timotheus Kampik",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/TimKam/js-son/issues"
},
"homepage": "https://github.com/TimKam/js-son#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@eslint/js": "^8.57.1",
"babel-loader": "^8.0.5",
"eslint": "^8.57.1",
"globals": "^13.24.0",
"jasmine": "^3.3.1",
"jsdoc": "^4.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}