-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "algorithms-4th-javascript",
"version": "1.0.0",
"description": "Personal notes & JavaScript code for the book: Algorithms 4th edition by Robert Sedgewick and Kevin Wayne.",
"scripts": {
"docs": "jsdoc -c docs/conf.json --pedantic --verbose -a all",
"lint": "standard \"src/**/*.js\"",
"lint:fix": "yarn lint --fix",
"pretest": "yarn lint:fix",
"test": "jasmine --config=jasmine.json",
"test:exercises": "jasmine exercises/**/*.spec.js --helper=spec/helpers/*.js"
},
"keywords": [
"algorithms",
"javascript",
"robert-sedgewick",
"kevin-wayne"
],
"author": "Isaac Ramírez <[email protected]>",
"license": "ISC",
"standard": {
"globals": [
"CONFIG",
"UNDEF",
"TestCase",
"afterEach",
"beforeAll",
"beforeEach",
"describe",
"expect",
"it",
"jasmine",
"spyOn"
]
},
"devDependencies": {
"d3": "^5.15.1",
"glob": "^7.1.6",
"ink-docstrap": "^1.3.2",
"jasmine": "^3.6.3",
"jasmine-spec-reporter": "^6.0.0",
"jsdoc": "~3.6.6",
"jsdom": "^16.4.0",
"mathjs": "^8.0.1",
"standard": "^16.0.1"
}
}