-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 954 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
{
"name": "sel",
"version": "0.1.0",
"main": "dist/sel.js",
"license": "MIT",
"author": "alex-bes",
"homepage": "http://logicify.github.io/sel/",
"description": "SEL - is a simple and lightweight expression language which can be used in your application for extending configuration abilities. This package provides JS implementation for the parser and evaluator.",
"bugs": {
"url": "https://github.com/Logicify/sel-js/issues"
},
"directories": {
"test": "test",
"dist": "dist"
},
"scripts": {
"build": "grunt",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/Logicify/sel-js.git"
},
"devDependencies": {
"chai": "^1.9.1",
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-uglify": "~0.8.0",
"grunt-mocha-test": "^0.12.7",
"load-grunt-tasks": "~3.1.0",
"mocha": "^1.20.1"
}
}