-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "inertia-can",
"version": "0.0.5",
"description": "The Canjs adapter for Inertia.js",
"main": "dist/cjs/index.js",
"keywords": [
"canjs"
],
"scripts": {
"preversion": "npm run build",
"postpublish": "git push --tags && git push",
"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",
"build": "node build.js"
},
"contributors": [
"Cherif BOUCHELAGHEM <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@inertiajs/inertia": "^0.6.0",
"can": "^6.5.0",
"eslint": "^7.12.1",
"steal": "^2.2.4",
"steal-tools": "^2.2.6"
},
"peerDependencies": {
"@inertiajs/inertia": "^0.5.0",
"can": "^6.5.0"
},
"steal": {
"main": "index",
"directories": {
"lib": "src"
},
"babelOptions": {
"plugins": [
"transform-class-properties"
]
},
"plugins": [
"can"
]
}
}