-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "zenypass-account-model",
"version": "1.2.1",
"description": "immutable model with access-control for ZenyPass records of user bookmarks and corresponding identifiers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"predist": "mkdirp dist && rimraf dist/*",
"dist": "tsc -p src --outDir dist",
"example": "npm run example:bundle && npm run example:serve",
"example:debug": "concurrently --kill-others \"npm run example:bundle:watch\" \"npm run example:serve\"",
"example:serve": "http-server -c-1 -i -e html -o -p 6510 spec/example",
"preexample:bundle": "rimraf spec/example/*.js",
"example:bundle": "browserify spec/example/index.ts -p [ tsify -p spec/example ] --exclude pbkdf2sha512 --exclude url --exclude tslib --exclude debug -t uglifyify -o spec/example/index.js",
"example:bundle:watch": "watchify spec/example/index.ts -p [ tsify -p spec/example ] --exclude pbkdf2sha512 --exclude url --exclude tslib --exclude debug -o spec/example/index.js --debug -v",
"prepublish": "npm run dist",
"pretest": "mkdirp spec/reports && rimraf spec/reports/*",
"test": "karma start spec/karma.conf.js --single-run",
"test:debug": "karma start spec/karma.conf.js --no-single-run",
"test:coverage": "npm run pretest && karma start spec/karma-coverage.conf.js --single-run && remap-istanbul -i spec/reports/coverage/chrom*/coverage.json -o spec/reports/coverage -t html && http-server -c-1 -o -p 8888 spec/reports/coverage",
"pretest:ci": "mkdirp spec/reports/coverage && rimraf spec/reports/coverage",
"test:ci:coveralls": "cat spec/reports/coverage/lcov.info | sed -e 's/SF:\\.\\.\\//SF:/' | coveralls",
"test:ci": "karma start spec/karma-coverage.conf.js --single-run && remap-istanbul -i spec/reports/coverage/chrom*/coverage.json -o spec/reports/coverage/lcov.info -t lcovonly",
"test:web:serve": "http-server -c-1 -o -p 6510 spec/web",
"pretest:web": "rimraf spec/web/*.js",
"test:web": "browserify spec/*.spec.ts -p [ tsify -p spec ] --exclude url --exclude tslib -t uglifyify -o spec/web/index.spec.js && npm run test:web:serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenyway/zenypass-account-model.git"
},
"keywords": [
"immutable",
"zenypass",
"access-control"
],
"author": {
"name": "Stephane M. Catala",
"email": "stephane@zenyway.com"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/zenyway/zenypass-account-model/issues"
},
"homepage": "https://github.com/zenyway/zenypass-account-model#readme",
"dependencies": {
"tslib": "^1.6.0",
"url": "^0.11.0"
},
"devDependencies": {
"@types/debug": "0.0.29",
"@types/jasmine": "^2.5.43",
"@types/node": "^7.0.5",
"browserify": "^14.1.0",
"browserify-istanbul": "^2.0.0",
"concurrently": "^3.3.0",
"coveralls": "^2.11.16",
"cpx": "^1.5.0",
"debug": "^2.6.1",
"eslint": "^3.15.0",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.2.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"mkdirp": "^0.5.1",
"pbkdf2sha512": "^1.0.2",
"remap-istanbul": "^0.9.1",
"rimraf": "^2.5.4",
"tsify": "^3.0.1",
"typescript": "^2.1.6",
"uglifyify": "^3.0.4",
"watchify": "^3.9.0"
}
}