-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.6 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.6 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
{
"name": "trail-shimmer",
"description": "",
"repository": "open-trail/node-trail-shimmer",
"version": "0.1.2",
"main": "dist/index.js",
"keywords": [],
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.8.0",
"eslint-plugin-babel": "^3.2.0",
"ghooks": "^1.2.1",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"should": "^8.3.1"
},
"license": "MIT",
"dependencies": {
"debug": "^2.2.0"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "babel src -d dist --copy-files",
"lint": "eslint .",
"test": "NODE_ENV=test babel-node ./node_modules/.bin/_mocha --reporter spec $npm_package_options_mocha 'src/**/*.spec.js'",
"test-cov": "NODE_ENV=test babel-node ./node_modules/.bin/isparta cover --root src --report html _mocha -- $npm_package_options_mocha 'src/**/*.spec.js'",
"test-travis": "NODE_ENV=test babel-node ./node_modules/.bin/isparta cover --root src --report lcovonly _mocha -- $npm_package_options_mocha 'src/**/*.spec.js'",
"prepublish": "npm run build",
"np": "resources/np"
},
"options": {
"mocha": "--require resources/mocha-bootload --check-leaks --full-trace"
},
"config": {
"ghooks": {
"pre-commit": "npm run build && npm run lint && npm run test-cov"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}