-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
37
38
39
40
41
42
43
{
"name": "idiom.js",
"version": "1.0.1",
"description": "Translate your JS applications",
"main": "lib/index.js",
"repository": "git@github.com:fabioars/idiom.js.git",
"author": "Fabio Soares <fabioars@live.com>",
"license": "MIT",
"private": false,
"scripts": {
"clear": "rimraf lib",
"build": "npm run clear && gulp build",
"build:watch": "npm run clear && gulp watch",
"build:umd": "webpack",
"build:umd:min": "webpack --output-filename idiom.min.js -p",
"build:all": "npm run build && npm run build:umd && npm run build:umd:min",
"test": "jest --verbose",
"test:tdd": "jest --verbose --watch",
"test:coverage": "jest --coverage",
"prepublish": "npm run build:all"
},
"files": [
"dist",
"lib"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-stage-1": "^6.24.1",
"eslint-plugin-jest": "^22.7.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"husky": "^2.5.0",
"jest": "^23.1.0",
"rimraf": "^2.6.2",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"babel-preset-env": "^1.7.0"
}
}