generated from liquidcarrot/repository
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.24 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
{
"name": "@liquid-carrot/repository",
"version": "1.0.0",
"description": "A boilerplate repository to quickly build JavaScript DevOps tools like LoDash, Async, Debug, etc.",
"main": "index.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha test/node.js",
"test:browser": "npm run build:test && live-server test/",
"build": "npm run build:src && npm run doc",
"build:src": "browserify src/index.js -o dist/index.js -s 'Calculator'",
"build:test": "webpack test/node.js -o test/browser.js",
"doc": "npm run doc:markdown && npm run doc:html",
"doc:html": "jsdoc -c jsdoc.conf.json",
"doc:markdown": "jsdoc2md src/*.js > DOCUMENTATION.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liquidcarrot/repository.git"
},
"author": "Liquid Carrot <people@liquidcarrot.io> (https://liquidcarrot.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/liquidcarrot/repository/issues"
},
"homepage": "https://github.com/liquidcarrot/repository#readme",
"devDependencies": {
"chai": "^4.2.0",
"jsdoc-to-markdown": "^5.0.0",
"live-server": "^1.2.1",
"mocha": "^6.2.0",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
}
}