-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 834 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 834 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
{
"name": "de-duplicated-array",
"version": "0.0.1",
"description": "A simple example of a function to de-duplicate arrays in JavaScript (Nodejs project)",
"main": "main.js",
"author": "Donal Rafferty",
"config": {
"blanket": {
"pattern": [
"app"
]
}
},
"scripts": {
"test": "npm run single-server",
"test-server": "grunt watch",
"single-server": "grunt mocha-test"
},
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"chai": "~3.0.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cov": "^0.4.0",
"grunt-simple-mocha": "~0.4.0",
"mocha": "~2.2.5",
"sinon": "~1.15.4"
},
"dependencies": {
"yargs": "^3.29.0"
}
}