-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.47 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
48
49
50
51
52
53
{
"name": "stamp-utils",
"version": "1.3.2",
"description": "Create and compose stamps: Composable factory functions.",
"main": "build",
"scripts": {
"clean": "rimraf build && mkdir build",
"lint": "eslint src/",
"check-compose": "babel-node ./node_modules/.bin/check-compose src/compose",
"pretest": "npm run -s lint",
"test": "cross-env NODE_PATH=src tape -r babel-register src/test/index.js",
"posttest": "npm run -s check-compose",
"watch": "watch 'clear && npm -s run lint && npm run -s test' src",
"prebuild": "npm run clean",
"build": "babel -s -d build src",
"update": "updtr",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/stampit-org/stamp-utils.git"
},
"keywords": [
"stamp",
"stamps",
"compose",
"composition",
"prototypal",
"oo"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampit-org/stamp-utils/issues"
},
"homepage": "https://github.com/stampit-org/stamp-utils#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^7.1.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"check-compose": "^3.2.0",
"cross-env": "3.1.3",
"eslint": "^3.10.2",
"rimraf": "^2.4.3",
"tape": "^4.2.1",
"updtr": "0.2.3",
"watch": "1.0.1"
},
"dependencies": {
"lodash": "^4.6.1"
}
}