-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "stencil-i18n-store",
"version": "0.8.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "",
"scripts": {
"build": "npm run clean && tsc -p . && npm run rollup",
"clean": "rm -rf build/ dist/",
"lint.prettier": "node_modules/.bin/prettier --write 'src/**/*.ts'",
"release": "np",
"rollup": "rollup -c rollup.config.js",
"test": "npm run test.project && npm run test:app",
"test:app": "scripty",
"test.ci": "npm run test && npm run test.prettier && npm run test:app",
"test.prettier": "node_modules/.bin/prettier --check 'src/**/*.ts'",
"test.project": "jest",
"version": "npm run build"
},
"keywords": [
"stencil",
"store",
"i18n",
"hooks"
],
"files": [
"dist"
],
"author": "Sergio Arbeo",
"license": "MIT",
"peerDependencies": {
"@stencil/store": ">1.3.0"
},
"devDependencies": {
"@stencil/core": "1.9.0",
"@stencil/store": "~1.3.0",
"@types/jest": "^24.0.23",
"babel-jest": "^24.9.0",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"jest-fetch-mock": "^3.0.3",
"np": "^5.1.3",
"prettier": "^1.19.1",
"rollup": "^2.10.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^5.3.0",
"scripty": "^2.0.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
}
}