-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.35 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "louki",
"version": "2.0.0",
"description": "Locale Organization Utility to manage locales",
"main": "src/index.js",
"repository": "https://github.com/Drawbotics/louki.git",
"author": "[email protected]",
"license": "MIT",
"preferGlobal": true,
"scripts": {
"clean": "rimraf dist/",
"build:commonjs": "babel src --out-dir dist/",
"build": "npm run clean && npm run build:commonjs",
"build-watch": "npm run clean && npm run build:commonjs -- --watch",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --reporter spec --watch ./test ./src",
"mocha": "./node_modules/.bin/mocha"
},
"bin": {
"louki": "./bin/louki"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"dependencies": {
"@nicmosc/js-yaml": "^0.1.11",
"babel-polyfill": "^6.23.0",
"commander": "^2.9.0",
"directory-tree": "^1.2.0",
"dotenv": "^4.0.0",
"fs": "^0.0.1-security",
"lodash": "^4.17.11",
"node-watch": "^0.5.5",
"rc": "^1.2.8",
"request": "^2.88.0",
"rimraf": "^2.6.1",
"shelljs": "^0.8.3",
"user-home": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"mocha": "^5.2.0"
}
}