forked from aimacode/aima-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
42
43
44
45
46
{
"name": "aima-javascript",
"version": "1.0.0",
"description": "Javascript visualization of algorithms from Norvig And Russell's \"Artificial Intelligence - A Modern Approach 4th Edition.\"",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git://github.com/aimacode/aima-javascript.git"
},
"keywords": [
"aima",
"ai"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aimacode/aima-javascript/issues"
},
"homepage": "https://github.com/aimacode/aima-javascript#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.6",
"babel-register": "^6.7.2",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"gulp-watch": "^4.3.5",
"jspm": "^0.16.31",
"prettier": "^1.7.0"
},
"jspm": {
"dependencies": {
"css": "github:systemjs/plugin-css@^0.1.20"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"clean-css": "npm:clean-css@^3.4.10",
"core-js": "npm:core-js@^1.1.4"
}
},
"dependencies": {
"babel-preset-es2015": "^6.9.0"
}
}