-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "babel-plugin-preval",
"version": "0.0.0-semantically-released",
"description": "Pre-evaluate code at build-time",
"engines": {
"node": ">=4",
"npm": ">=3"
},
"main": "dist/index.js",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"precommit": "kcd-scripts precommit"
},
"files": ["dist", "macro.js"],
"keywords": ["babel", "babel-plugin", "eval", "precompile", "babel-macros"],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.0",
"babel-macros": "^1.1.1",
"babel-register": "^6.26.0",
"babylon": "^6.18.0",
"require-from-string": "^2.0.1"
},
"devDependencies": {
"ast-pretty-print": "^2.0.1",
"babel-plugin-tester": "^4.0.0",
"kcd-scripts": "^0.27.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": ["node_modules", "coverage", "dist"],
"babel": {
"presets": "kcd-scripts/babel"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/babel-plugin-preval.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/babel-plugin-preval/issues"
},
"homepage": "https://github.com/kentcdodds/babel-plugin-preval#readme"
}