forked from EricSmekens/jsep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 989 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
33
34
35
36
37
38
{
"name": "jsep",
"version": "0.3.4",
"description": "a tiny JavaScript expression parser",
"author": "Stephen Oney <[email protected]> (http://from.so/)",
"homepage": "http://jsep.from.so/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/soney/jsep.git"
},
"main": "src/jsep.js",
"typings": "typings/tsd.d.ts",
"private": false,
"dependencies": {},
"devDependencies": {
"grunt": "~1.0.1",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-qunit": "~1.3.0",
"grunt-contrib-uglify": "~3.3.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-watch": "~1.0.0",
"grunt-contrib-compress": "~1.4.3",
"grunt-contrib-clean": "~1.1.0",
"grunt-docco": "~0.5.0"
},
"engines": {
"node": ">= 4.0.0"
},
"directories": {
"test": "test"
},
"scripts": {
"default": "node ./node_modules/grunt/bin/grunt default",
"test": "node ./node_modules/grunt/bin/grunt test",
"package": "node ./node_modules/grunt/bin/grunt package"
}
}