-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
48
49
{
"name": "button-generator",
"version": "1.1.6",
"private": false,
"description": "Button Generator ===",
"main": "index.js",
"author": "[email protected]",
"scripts": {
"test": "jasmine JASMINE_CONFIG_PATH=jasmine.json",
"test:watch": "watch 'npm test' ./lib ./test",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "node .",
"release": "npm publish"
},
"dependencies": {
"fs-promise": "^2.0.0",
"lodash": "^4.12.0",
"sharp": "^0.19.1",
"svg2png": "^4.1.1",
"virtual-dom": "^2.1.1"
},
"license": "MIT",
"devDependencies": {
"@pietvanzoen/jasmine-promise-matchers": "^0.2.1",
"eslint": "^3.12.1",
"faker": "^3.1.0",
"jasmine": "^2.5.2",
"jasmine-spec-reporter": "^3.1.0",
"js-styleguide": "git://github.com/usabilla/js-styleguide#v1.0.1",
"lodash": "^4.12.0",
"watch": "^1.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.com"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "github:usabilla/button-generator"
},
"bugs": {
"url": "https://github.com/usabilla/button-generator/issues"
},
"homepage": "https://github.com/usabilla/button-generator#readme"
}