-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 908 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 908 Bytes
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": "hash0",
"private": true,
"version": "2.1.2",
"description": "Synchronizable PBKDF2 based password generator",
"repository": "https://github.com/dannysu/hash0",
"license": "MIT",
"devDependencies": {
"karma": "~0.10",
"protractor": "~0.17.0",
"http-server": "^0.6.1",
"shelljs": "^0.2.6",
"eslint": "~0.23.0",
"eslint-plugin-angular": "0.0.13"
},
"scripts": {
"start": "http-server -p 8000",
"test": "karma start test/karma.conf.js",
"update-webdriver": "webdriver-manager update",
"protractor": "protractor test/protractor-conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run"
},
"eslintConfig": {
"plugins": [
"angular"
],
"rules": {
"quotes": "single",
"strict": [2, "global"],
"global-strict": 0,
"no-multi-str": 0,
"angular/ng_di": [2, "array"]
}
}
}