mirror of
https://github.com/mapbox/expression-jamsession.git
synced 2026-01-18 14:38:51 +00:00
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "@mapbox/expressions-transformer",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest --maxWorkers=4",
|
|
"lint": "eslint .",
|
|
"pretest": "npm run lint",
|
|
"precommit": "lint-staged",
|
|
"format": "prettier --write '{,src/**/,test/**/}*.js'"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.js": [
|
|
"eslint",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"clearMocks": true
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"env"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mapbox/expressions-transformer.git"
|
|
},
|
|
"author": "Mapbox",
|
|
"license": "UNLICENSED",
|
|
"bugs": {
|
|
"url": "https://github.com/mapbox/expressions-transformer/issues"
|
|
},
|
|
"homepage": "https://github.com/mapbox/expressions-transformer#readme",
|
|
"devDependencies": {
|
|
"babel-preset-env": "^1.6.1",
|
|
"eslint": "^4.9.0",
|
|
"husky": "^0.14.3",
|
|
"jest": "^21.2.1",
|
|
"lint-staged": "^4.3.0",
|
|
"prettier": "^1.7.4"
|
|
},
|
|
"dependencies": {
|
|
"jsep": "^0.3.2"
|
|
}
|
|
}
|