-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "1-click-BOM",
"description": "A browser extension to add electronic components to shopping carts.",
"scripts": {
"package": "./configure && ninja package-chrome",
"build": "./configure && ninja",
"prettier": "prettier --write src/**/*.js configure",
"eslintfix": "eslint --fix 'src/**/*.js' configure",
"fmt": "npm run eslintfix; npm run prettier"
},
"repository": {
"type": "git",
"url": "https://github.com/kitspace/1clickBOM"
},
"author": "Kaspar Emanuel",
"license": "CPAL-1.0",
"bugs": {
"url": "https://github.com/kitspace/1clickBOM/issues"
},
"main": "lib/main.js",
"homepage": "http://1clickBOM.com",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015-script": "^1.1.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"eslint": "^8.41.0",
"globule": "^1.0.0",
"ninja-build-gen": "^0.2.1",
"prettier": "^1.7.4"
},
"dependencies": {
"1-click-bom-minimal": "https://github.com/kitspace/npm-1-click-bom-minimal",
"bluebird": "^3.7.2",
"electro-grammar": "^1.0.0"
}
}