forked from llipio/conjugator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "universal-conjugator",
"version": "2.0.0",
"description": "Conjugates languages",
"main": "build/conjugator.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register",
"test:watch": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register -w",
"start": "babel src/conjugator.js -o build/app.js -w",
"deploy": "babel src -d build && npm publish",
"eslint": "./node_modules/.bin/eslint src --ext .js",
"eslint:watch": "./node_modules/.bin/esw src -w --color --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llipio/conjugator.git"
},
"keywords": [
"languages",
"korean"
],
"author": "llip.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/llipio/conjugator/issues"
},
"homepage": "https://github.com/llipio/conjugator#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-env": "^1.2.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-watch": "^3.1.0",
"mocha": "^3.2.0"
},
"files": ["build"]
}