-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (40 loc) · 1.06 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
{
"name": "chilenify",
"version": "1.0.1",
"description": "Convert to chilean spanish",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist coverage",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/chilenify.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/chilenify.min.js",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mrpatiwi/chilenify.git"
},
"keywords": [
"chile"
],
"author": "Patricio López",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrpatiwi/chilenify/issues"
},
"homepage": "https://github.com/mrpatiwi/chilenify",
"dependencies": {
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"cross-env": "^1.0.7",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
}
}