forked from EricSmekens/jsep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 863 Bytes
/
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
{
"name": "jsep",
"version": "0.3.1-beta",
"description": "a tiny JavaScript expression parser",
"author": "Stephen Oney <[email protected]> (http://from.so/)",
"homepage": "http://jsep.from.so/",
"licenses": [{
"type": "MIT",
"url": "https://github.com/soney/jsep/blob/master/LICENSE"
}],
"repository": {
"type": "git",
"url": "https://github.com/soney/jsep.git"
},
"main": "build/jsep.js",
"private": false,
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.1",
"grunt-contrib-qunit": "~0.3",
"grunt-contrib-uglify": "~0.2",
"grunt-contrib-concat": "~0.2",
"grunt-contrib-watch": "~0.5",
"grunt-contrib-compress": "~0.5",
"grunt-contrib-clean": "~0.4",
"grunt-docco": "~0.3"
},
"engines": {"node": ">= 0.4.7"},
"directories": {"test": "test"},
"scripts": {"test": "grunt test"}
}