-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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
{
"name": "metalsmith-migrate-safetag",
"description": "A metalsmith plugin to migrate SAFETAG content to the metalsmith approach",
"repository": "git://github.com/contentascode/metalsmith-migrate-safetag.git",
"version": "0.2.2",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/*.js",
"build": "babel -d lib src --source-maps",
"build:watch": "nodemon --watch src --exec npm run build",
"test": "npm -s run lint && npm -s run build && mocha --compilers js:babel-register",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"assert-dir-equal": "^1.0.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-stack-trace-sourcemap": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.1",
"metalsmith": "^2.3.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0"
},
"dependencies": {
"debug": "^2.2.0",
"lodash": "^4.17.4",
"minimatch": "^3.0.0",
"trim-newlines": "^2.0.0",
"source-map-support": "^0.4.15"
}
}