UNPKG

1.17 kBJSONView Raw
1{
2 "name": "jstransform",
3 "version": "11.0.2",
4 "description": "A simple AST visitor-based JS transformer",
5 "contributors": [
6 {
7 "name": "Jeff Morrison",
8 "email": "jeffmo@fb.com"
9 }
10 ],
11 "bin": "bin/jstransform",
12 "main": "src/jstransform",
13 "repository": {
14 "type": "git",
15 "url": "git@github.com:facebook/jstransform.git"
16 },
17 "keywords": [
18 "transformer",
19 "compiler",
20 "syntax",
21 "visitor"
22 ],
23 "dependencies": {
24 "base62": "^1.1.0",
25 "commoner": "^0.10.1",
26 "esprima-fb": "^15001.1.0-dev-harmony-fb",
27 "object-assign": "^2.0.0",
28 "source-map": "^0.4.2"
29 },
30 "license": "BSD-3-Clause",
31 "engines": {
32 "node": ">=0.8.8"
33 },
34 "devDependencies": {
35 "jest-cli": "^0.4.0",
36 "jshint": "^2.6.3"
37 },
38 "jest": {
39 "scriptPreprocessor": "<rootDir>/jestPreprocessor.js",
40 "setupEnvScriptFile": "<rootDir>/jestEnvironment.js",
41 "testPathIgnorePatterns": [
42 "/node_modules/",
43 "/__tests__/[^/]*/.+"
44 ]
45 },
46 "scripts": {
47 "prepublish": "jest && jshint --config=.jshintrc --exclude=node_modules .",
48 "test": "jest && jshint --config=.jshintrc --exclude=node_modules ."
49 }
50}