-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.53 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
{
"name": "secure-string",
"version": "0.0.0-development",
"description": "Text that should be kept confidential",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "mocha",
"test:browser": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -x src/ask.js --report lcovonly -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha -x src/ask.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/richardschneider/secure-string.git"
},
"author": {
"name": "Richard Schneider",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/richardschneider/secure-string/issues"
},
"homepage": "https://github.com/richardschneider/secure-string#readme",
"files": [ "dist", "src", "test" ],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"dirty-chai": "^2.0.1",
"istanbul": "^0.4.5",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"semantic-release": "^8.2.0",
"webpack": "^3.10.0"
}
}