-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "swatchjs",
"version": "3.2.2",
"description": "Framework for easily creating and exposing APIs as methods",
"main": "lib/index.js",
"scripts": {
"test": "nyc mocha 'test/**/*.test.js'",
"lint": "./node_modules/.bin/eslint --ext .js index.js lib test",
"coveralls": "nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"codecov": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test:debug": "mocha --debug-brk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/builtforme/swatchjs.git"
},
"keywords": [
"framework",
"methods",
"api"
],
"author": "Built For Me",
"license": "MIT",
"bugs": {
"url": "https://github.com/builtforme/swatchjs/issues"
},
"homepage": "https://github.com/builtforme/swatchjs#readme",
"dependencies": {
"function-arguments": "^1.0.8",
"joi": "^13.6.0"
},
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^3.0.4",
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"mocha-eslint": "^4.1.0",
"nyc": "^13.0.1",
"sinon": "^9.0.2"
},
"directories": {
"lib": "lib",
"test": "test"
}
}