-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 881 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 881 Bytes
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
{
"name": "geometer",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"dependencies": {
"binary-sortable-hash": "0.0.1",
"event-stream": "^3.3.1",
"invariant": "^2.1.0",
"radix-64": "^1.0.4",
"shutup": "0.0.1",
"through": "^2.3.8"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"rimraf": "^2.4.3"
},
"scripts": {
"test": "mocha --compilers js:babel/register --recursive",
"clean": "rimraf lib dist",
"check": "npm run test",
"build": "babel src --out-dir lib",
"build:watch": "watch 'npm run build' ./src",
"preversion": "npm run clean && npm run check",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rt2zz/geometer.git"
},
"author": "rt2zz <zack@root-two.com>",
"license": "MIT"
}