forked from Workfront/workfront-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 KB
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
{
"name": "workfront-cookie",
"version": "3.2.1",
"description": "Extracts values from workfront cookies",
"main": "dist/workfront-cookie.min.js",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"prepublish": "npm run build",
"build": "webpack",
"dev": "webpack --watch",
"lint": "eslint --ext .js .",
"test:lint": "npm run lint",
"test:sources": "karma start karma.conf.js",
"test:typings": "./node_modules/.bin/_mocha -- test/typings.spec.js",
"test": "run-p test:*",
"coverage": "cat coverage/*/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Workfront/workfront-cookie.git"
},
"keywords": [
"Workfront",
"AtTask",
"session",
"cookie"
],
"author": "Workfront",
"contributors": [
"Hovhannes Babayan <bhovhannes@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Workfront/workfront-cookie/issues"
},
"homepage": "https://github.com/Workfront/workfront-cookie#readme",
"devDependencies": {
"codecov": "1.0.1",
"eslint": "3.15.0",
"eslint-loader": "1.6.1",
"expect.js": "0.3.1",
"istanbul-instrumenter-loader": "1.2.0",
"karma": "1.4.1",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.1",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"mocha": "3.2.0",
"npm-run-all": "4.0.1",
"phantomjs-prebuilt": "2.1.14",
"typescript": "2.1.6",
"typescript-definition-tester": "0.0.5",
"webpack": "2.2.1"
}
}