-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.29 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
{
"name": "tevatron",
"version": "0.2.2",
"description": "Lightweight custom elements library",
"main": "dist/tevatron.js",
"scripts": {
"build:testcomponents": "node ../tevatron-cli/tevatron-build.js -s test/src/components -t test/dist/components -cx",
"build:testapp": "$(npm bin)/browserify test/src/app.js -o test/dist/app.js -t babelify",
"pretest": "npm run build:testcomponents && npm run build:testapp",
"test": "$(npm bin)/live-server --open=test",
"build": "$(npm bin)/browserify src/tevatron.js -o dist/tevatron.js -t babelify -s Tevatron",
"postbuild": "$(npm bin)/uglifyjs dist/tevatron.js -m -o dist/tevatron.min.js --preamble \"$(cat src/minified-preamble.txt)\" --source-map dist/tevatron.js.map --source-map-root dist/tevatron.js ",
"release": "node bump"
},
"author": "Zacqary Adam Xeper <[email protected]>",
"license": "MIT",
"repository": "https://github.com/zacqary/tevatron.git",
"devDependencies": {
"babel-eslint": "^3.1.18",
"babel-runtime": "^5.6.7",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"colors": "^1.1.2",
"document-register-element": "^0.4.5",
"eslint": "^0.23.0",
"live-server": "^0.7.1",
"semver": "^4.3.6",
"tevatron-cli": "^0.2.3",
"uglifyjs": "^2.4.10",
"yesno": "0.0.1"
}
}