-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 KB
/
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
39
40
41
42
43
44
45
46
{
"name": "venn",
"preferGlobal": false,
"version": "1.1.2",
"author": "bitoiu <vmrmonteiro@gmail.com>",
"description": "fluent API library for set operations",
"repository": {
"type": "git",
"url": "https://github.com/bitoiu/venn.git"
},
"main": "venn.min.js",
"keywords": [
"venn",
"set",
"intersect",
"union"
],
"dependencies": {
"amdefine": ">=0.0.5",
"npm": "^6.4.1",
"requirejs": "2.1.x"
},
"devDependencies": {
"chai": "1.5.x",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-uglify": "^4.0.0",
"grunt-git": "~0.1.5",
"grunt-release": "^0.14.0",
"karma": ">=0.8.x",
"karma-mocha": "0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-requirejs": "0.1",
"lodash": "^4.17.11",
"mocha": "^6.0.0"
},
"scripts": {
"test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS && mocha",
"grunt-build": "grunt",
"grunt-release": "grunt release"
},
"license": "MIT",
"engines": {
"node": ">=0.6"
}
}