forked from hellofloat/float-programming-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
47
48
49
{
"name": "float-programming-test",
"version": "1.3.0",
"description": "A programming test for Float engineering applicants.",
"main": "index.js",
"scripts": {
"test": "tape test/**/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellofloat/float-programming-test.git"
},
"keywords": [
"float"
],
"author": "Andy Burke <aburke@bitflood.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hellofloat/float-programming-test/issues"
},
"homepage": "https://github.com/hellofloat/float-programming-test#readme",
"jshintConfig": {
"curly": true,
"eqeqeq": true,
"eqnull": true,
"esnext": true,
"forin": true,
"freeze": true,
"futurehostile": true,
"latedef": "nofunc",
"maxcomplexity": 10,
"maxdepth": 3,
"maxparams": 4,
"maxstatements": 30,
"noarg": true,
"nocomma": true,
"node": true,
"nonbsp": true,
"nonew": true,
"singleGroups": true,
"strict": "global",
"undef": true,
"unused": true
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
}
}