forked from OperationSpark/recursion-prompts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "recursion-prompts",
"version": "1.0.0",
"description": "Recursion Practice",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"pretest": "npm install",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OperationSpark/recursion-prompts.git"
},
"author": "Operation Spark",
"license": "ISC",
"bugs": {
"url": "https://github.com/OperationSpark/recursion-prompts/issues"
},
"homepage": "https://github.com/OperationSpark/recursion-prompts#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"sinon": "^5.0.10",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"puppeteer": "^0.11.0"
},
"dependencies": {
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.2",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0"
}
}