-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "svelte-dev-helper",
"version": "1.1.9",
"description": "Helper for svelte components to ease development",
"main": "index.js",
"scripts": {
"all": "npm run lint && npm run test",
"lint": "eslint index.js lib/ test/*.spec.js",
"test": "mocha --require buble/register --require reify --require jsdom-global/register --full-trace --check-leaks test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekhaled/svelte-dev-helper.git"
},
"keywords": [
"svelte",
"dev",
"helper"
],
"author": "ekhaled",
"license": "MIT",
"bugs": {
"url": "https://github.com/ekhaled/svelte-dev-helper/issues"
},
"homepage": "https://github.com/ekhaled/svelte-dev-helper#readme",
"devDependencies": {
"buble": "^0.18.0",
"chai": "^4.1.2",
"eslint": "^4.15.0",
"eslint-plugin-mocha": "^4.11.0",
"jsdom": "11.5.1",
"jsdom-global": "3.0.2",
"mocha": "^4.1.0",
"reify": "^0.13.6",
"sinon": "^4.1.4",
"sinon-chai": "^2.14.0"
}
}