forked from of-human-bondage/react-proptypes-intellisense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
60
61
62
63
64
65
66
{
"name": "react-proptypes-intellisense",
"displayName": "React PropTypes Intellisense",
"description": "PropTypes intellisense for React components",
"version": "1.0.2",
"publisher": "OfHumanBondage",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"React",
"Intellisense",
"PropTypes",
"suggest"
],
"bugs": {
"url": "https://github.com/of-human-bondage/react-proptypes-intellisense/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/of-human-bondage/react-proptypes-intellisense/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/of-human-bondage/react-proptypes-intellisense.git"
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "rimraf ./out && tsc -p ./",
"watch": "rimraf ./out && tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "rimraf ./out && npm run compile && CODE_TESTS_WORKSPACE=./testWorkspace/ node ./node_modules/vscode/bin/test",
"testOnWindows": "rimraf ./out && npm run compile && SET CODE_TESTS_WORKSPACE=./testWorkspace/ && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/babel-traverse": "^6.25.3",
"@types/babel-types": "^7.0.1",
"@types/babylon": "^6.16.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"@types/prettier": "^1.10.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"vscode": "^1.1.18"
},
"dependencies": {
"@types/glob": "^5.0.35",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"babylon": "^6.18.0",
"decache": "^4.4.0",
"glob": "^7.1.2",
"istanbul": "^0.4.5",
"prettier": "^1.12.1",
"remap-istanbul": "^0.11.0",
"rimraf": "^2.6.2"
}
}