-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.22 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
46
47
{
"name": "kopi.js",
"description": "API for ordering Singaporean Coffee",
"version": "1.0.0",
"license": "MIT",
"maintainers": [
"Lim Chee Aun (http://cheeaun.com/)"
],
"contributors": [
"Lakshan Perera (http://laktek.com/)",
"Choon Kee Oh (https://github.com/soulofpeace)"
],
"main": "./index",
"browser": "dist/kopi.js",
"devDependencies": {
"mocha": "~2.5",
"chai": "~3.5.0",
"rollup": "~0.34.1",
"rollup-plugin-buble": "~0.12.1",
"uglify-js": "~2.7.0"
},
"scripts": {
"dist": "npm run dist:normal && npm run dist:min",
"dist:normal": "rollup -c rollup-buble.config.js -i lib/kopi.js -o dist/kopi.js",
"dist:min": "uglifyjs --screw-ie8 -c -m -o dist/kopi.min.js -- dist/kopi.js",
"pretest": "npm run dist",
"test": "mocha test/*_spec.* -r test/spec_helper.js -R dot -u bdd"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/kopijs/kopi.js.git"
},
"keywords": [
"kopi",
"kopijs",
"coffee",
"singapore"
],
"author": "Lim Chee Aun <[email protected]> (http://cheeaun.com/)",
"bugs": {
"url": "https://github.com/kopijs/kopi.js/issues"
},
"homepage": "https://kopijs.org"
}