forked from stampit-org/stampit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "stampit",
"version": "2.1.0",
"description": "Create objects from reusable, composable behaviors.",
"author": {
"name": "Eric Elliott",
"url": "https://ericelliottjs.com"
},
"main": "./dist/stampit.js",
"keywords": [
"object",
"prototype",
"object oriented",
"browser",
"inheritance",
"oo",
"node",
"factory",
"class"
],
"repository": {
"type": "git",
"url": "[email protected]:stampit-org/stampit.git"
},
"dependencies": {
"lodash": "^3.9.1",
"supermixer": "^1.0.2"
},
"devDependencies": {
"babel": "^5.5.8",
"babel-eslint": "^3.1.19",
"blue-tape": "^0.1.9",
"browserify": "^10.2.1",
"dependency-check": "^2.5.0",
"eslint": "^0.24.0",
"isparta": "^3.0.3",
"nsp": "^1.0.3",
"require-all": "^1.1.0",
"rimraf": "^2.3.4",
"tape": "^4.0.0",
"uglifyjs": "^2.4.10"
},
"scripts": {
"cov": "npm run cov:clean && npm run cov:generate",
"cov:clean": "rimraf ./coverage/",
"cov:generate": "babel-node node_modules/.bin/isparta cover --report text --report html test/index.js",
"prepublish": "npm run build && npm run check && npm test",
"test": "npm run lint && babel-node test/index.js",
"clean": "rimraf dist/* && mkdir dist || true",
"uglify": "uglifyjs dist/stampit.js -m -c warnings=false -o dist/stampit.min.js",
"lint": "eslint src && eslint test",
"build": "npm run clean && babel src --out-dir dist && npm run uglify",
"deps": "npm run deps:missing && npm run deps:extra",
"deps:missing": "dependency-check package.json",
"deps:extra": "dependency-check package.json --extra --no-dev --ignore",
"audit": "nsp package",
"precheck": "npm run lint && npm run build && npm test",
"check": "npm run audit && npm run deps && npm outdated --depth 0"
},
"license": "MIT",
"npmName": "stampit",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"stampit.js",
"stampit.min.js"
]
}
]
}