-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "bot-lang",
"version": "1.1.1",
"description": "Common bot language subsitutions and tags.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register test/basic.js -R spec -t 10000 -s 1700",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --compilers js:babel-register -R spec test -s 1700 -t 4000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bot-ai/bot-lang.git"
},
"author": "Rob Ellis",
"license": "MIT",
"bugs": {
"url": "https://github.com/bot-ai/bot-lang/issues"
},
"homepage": "https://github.com/bot-ai/bot-lang#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.18.0",
"coveralls": "^2.11.14",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2"
}
}