-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 952 Bytes
/
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
{
"name": "magicomplete",
"version": "0.0.3",
"description": "A natural language autocomplete library written in TypeScript.",
"main": "build/index.js",
"typings": "build/index",
"scripts": {
"build": "tsc -p ./src && browserify ./build/index.js --standalone magicomplete -o ./demo/js/magicomplete.js && uglifyjs ./demo/js/magicomplete.js -o ./demo/js/magicomplete.min.js",
"test": "mocha ./build/test --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalinbas/magicomplete.git"
},
"keywords": [
"natural language form",
"autocomplete",
"typescript"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/kalinbas/magicomplete/issues"
},
"homepage": "https://github.com/kalinbas/magicomplete#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3"
},
"dependencies": {
"es6-shim": "^0.35.1"
}
}