-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 749 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 749 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
35
36
37
38
39
40
41
{
"name": "psym",
"version": "0.1.0",
"description": "Symbolic mathematics in JavaScript.",
"homepage": "github.com/maxbucknell/math",
"bugs": "maxbucknell/psym/issues",
"author": {
"name": "Max Bucknell",
"email": "me@maxbucknell.com",
"url": "maxbucknell.com"
},
"repository": {
"type": "git",
"url": "maxbucknell/psym"
},
"licenses": [
{
"type": "MIT"
}
],
"files": [
""
],
"keywords": [
"math",
"symbolic",
"computation"
],
"dependencies": {
"lodash-node": "~2.4.1"
},
"devDependencies": {
"should": "^3.2.0",
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.9.2",
"grunt-mocha-test": "^0.10.0"
},
"scripts": {
"test": "grunt"
}
}