-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "@spring-media/ps-web-apis",
"version": "1.10.10",
"description": "",
"main": "dist/ps-web-apis.cjs.js",
"module": "dist/ps-web-apis.esm.js",
"types": "dist/ps-web-apis.d.ts",
"scripts": {
"all": "yarn format && yarn lint && yarn build && yarn test",
"build": "rollup -c",
"test": "jest --coverage",
"check": "yarn format-check && yarn run lint-check",
"format": "prettier --print-width 140 --tab-width 4 --write '{src,test}/**/*.{ts,tsx}'",
"format-check": "prettier --print-width 140 --tab-width 4 --list-different 'src/**/*.{ts,tsx}'",
"lint": "tslint --fix './src/**/*.{ts,tsx}'",
"lint-check": "tslint './src/**/*.{ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spring-media/ps-web-apis.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/spring-media/ps-web-apis/issues"
},
"homepage": "https://github.com/spring-media/ps-web-apis#readme",
"devDependencies": {
"@types/cookie": "^0.3.2",
"@types/jest": "^24.0.9",
"@types/sinon": "^7.0.8",
"jest": "^24.1.0",
"prettier": "^1.18.2",
"rollup": "^1.4.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-uglify": "^6.0.2",
"sinon": "^7.2.5",
"ts-jest": "^24.0.0",
"tslib": "^1.9.3",
"tslint": "^5.20.0",
"typescript": "^3.3.3333"
}
}