-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "can-stache-transform",
"version": "0.1.0",
"description": "Stache Jest transformer",
"main": "index.js",
"scripts": {
"preversion": "npm test",
"version": "git commit -am \"Release\" && git checkout -b release && git add -f .",
"postversion": "git push --tags && git checkout main && git branch -D release && git push",
"test": "npm run detect-cycle && npm run lint && npx jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"repository": {
"type": "git",
"url": "https://github.com/canjs/can-validate-validatejs.git"
},
"keywords": [
"test",
"testing",
"can-stache-transform",
"jest",
"can-stache",
"stache",
"canjs"
],
"author": {
"name": "Bitovi"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/canjs/can-stache-transform/issues"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.8",
"babel-jest": "^27.4.6",
"can": "^6.6.2",
"detect-cyclic-packages": "^1.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1"
},
"dependencies": {
"can-stache-ast": "^1.1.0"
}
}