-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 735 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 735 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
{
"name": "exercises",
"version": "1.0.0",
"description": "coding exercises",
"main": "index.js",
"repository": "git@github.com:uldissturms/exercises.git",
"author": "Uldis Sturms <uldis.sturms@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"lint": "standard",
"bench": "node bench"
},
"devDependencies": {
"ava": "^0.25.0",
"jest": "^25.1.0"
},
"dependencies": {
"benchmark": "^2.1.4",
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"convnet": "^1.0.0",
"glob": "^7.1.2",
"ramda": "^0.26.1",
"standard": "^10.0.3"
},
"standard": {
"ignore": [
"*.data.*"
]
},
"jest": {
"testMatch": ["**/**/*.jest.js"]
}
}