-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "bulker",
"version": "0.1.2",
"description": "Perform bulk manipulations with DOM elements",
"author": "evenfrost <[email protected]>",
"keywords": [
"dom",
"query",
"selector",
"element"
],
"directories": {
"lib": "build"
},
"main": "build/bulker.js",
"repository": {
"type": "git",
"url": "git://github.com/evenfrost/bulker.git"
},
"bugs": {
"url": "https://github.com/evenfrost/bulker/issues"
},
"license": "MIT",
"homepage": "https://github.com/evenfrost/bulker",
"scripts": {
"clean": "rimraf build",
"dev": "babel source --out-dir build -s true && uglifyjs --in-source-map build/bulker.js.map --screw-ie8 -o build/bulker.js --source-map build/bulker.js.map build/bulker.js",
"babel": "babel source --out-dir build",
"uglify": "uglifyjs -o build/bulker.js build/bulker.js --screw-ie8",
"watch": "watch 'npm run dev' source",
"build": "npm run clean && npm run babel && npm run uglify",
"prepublish": "npm run build"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"rimraf": "^2.5.2",
"uglify-js": "^2.6.2",
"watch": "^0.18.0"
}
}