-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "templa",
"version": "1.0.0",
"author": "sasa+1 <sasaplus1@gmail.com>",
"description": "plugin based generator",
"bin": "./bin/templa",
"main": "./index.js",
"private": true,
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/tsukurite/templa.git"
},
"scripts": {
"babel": "babel ./src -d ./lib",
"babel-watch": "npm run babel -- -w",
"build": "npm run clean && npm run babel",
"clean": "rimraf ./lib/*.js",
"mocha": "mocha ./test/**/*.js",
"mocha-watch": "npm run mocha -- -w",
"prepublish": "npm run build",
"test": "npm run mocha"
},
"dependencies": {
"commander": "2.9.0",
"lodash.frompairs": "4.0.1",
"lodash.uniq": "4.4.0",
"lodash.zip": "4.1.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.11.6",
"mocha": "^2.5.3",
"power-assert": "^1.4.1",
"rimraf": "^2.5.4"
}
}