-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "@0devco/crabs",
"version": "1.5.1",
"description": "0devco javascript data collections",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"pretest": "npm run transpile",
"test": "node_modules/.bin/mocha test/tests.js",
"transpile": "node ./node_modules/babel-cli/bin/babel.js src --quiet --out-dir dist",
"bundle": "node_modules/.bin/webpack dist/index.js build/crabs.js --output-library crabs",
"uglify": "node_modules/.bin/uglifyjs build/crabs.js --compress --mangle --output build/crabs.min.js",
"build": "npm run transpile && npm run bundle && npm run uglify",
"eslint": "node_modules/.bin/eslint src/ test/",
"coverage": "npm run transpile && node_modules/.bin/nyc mocha test/tests.js",
"reporter": "node_modules/.bin/nyc report --reporter=html",
"prepublishOnly": "npm run build"
},
"babel": {
"presets": [
"env"
]
},
"repository": {
"type": "git",
"url": "https://github.com/0devco/crabs"
},
"keywords": [
"0devco",
"collection",
"crabs",
"js",
"vue",
"react"
],
"author": {
"name": "0devco",
"email": "0devco.ceo@gmail.com",
"url": "http://0dev.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/0devco/crabs/issues"
},
"homepage": "https://github.com/0devco/crabs",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.1",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.5.0",
"hoax.js": "^1.0.0",
"mocha": "^3.5.2",
"nyc": "^11.0.2",
"uglify-js": "^3.2.2",
"webpack": "^3.10.0"
}
}