-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.95 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.95 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
61
62
63
{
"name": "can-react-component",
"version": "3.0.0",
"description": "Create a React component out of a CanComponent.",
"homepage": "http://canjs.com",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-react-component.git"
},
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"url": "http://bitovi.com"
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run detect-cycle && npm run eslint && npm run testee",
"eslint": "eslint \"**/*.js\" --ignore-pattern \"dist\" --ignore-pattern \"node_modules\"",
"release:pre": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"prepublish": "npm run build",
"build": "node build.js",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"main": "can-react-component",
"keywords": [
"canjs",
"canjs-plugin",
"donejs",
"react"
],
"dependencies": {
"can-assign": "^1.3.3",
"can-namespace": "^1.0.0",
"can-reflect": "^1.17.6",
"can-symbol": "^1.6.5",
"can-view-callbacks": "^5.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"bit-docs": "0.0.11",
"can-component": "^5.0.0",
"can-stache": "^5.0.0",
"detect-cyclic-packages": "^1.1.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"steal": "^2.1.1",
"steal-builtins": "^1.0.0",
"steal-qunit": "^2.0.0",
"steal-tools": "^2.0.3",
"testee": "^0.9.1"
},
"peerDependencies": {
"react": "17.x"
}
}