-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 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
{
"name": "babel-plugin-casper-context",
"version": "0.1.4",
"description": "CasperContext - the friendly, invisible React Context API via Babel. Declare a variable, use it globally.",
"author": "Ruwan Chamara",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"babel-plugin",
"babel",
"react",
"react-context",
"global-state",
"casper-context",
"babel-plugin-casper-context",
"casper",
"react-casper-context",
"react-casper",
"compiler",
"ast",
"transform",
"state-management"
],
"repository": {
"type": "git",
"url": "https://github.com/rchamara/casper-context"
},
"bugs": {
"url": "https://github.com/rchamara/casper-context/issues"
},
"homepage": "https://github.com/rchamara/casper-context#readme",
"scripts": {
"build": "babel src --out-dir dist --extensions .ts,.js",
"dev": "babel src --out-dir dist --extensions .ts,.js --watch",
"clean": "rm -rf dist",
"test": "node tests/run.js",
"lint": "eslint src --ext .ts,.js",
"prepublishOnly": "npm run clean && npm run build"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.0",
"@babel/core": "^7.25.0",
"@babel/parser": "^7.25.0",
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.25.0",
"@babel/traverse": "^7.25.0",
"@babel/types": "^7.25.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^9.0.0",
"typescript": "^5.4.0"
}
}