-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 2.09 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
{
"name": "validachan",
"version": "0.0.1",
"author": "BlackPrincess",
"description": "An validation library for javascript.",
"keywords": [
"template",
"ECMAScript"
],
"license": "MIT",
"main": "dist/validachan.cjs.js",
"files": [
"dist"
],
"homepage": "https://github.com/BlackPrincess/validachan",
"bugs": "https://github.com/BlackPrincess/validachan/issues",
"repository": {
"type": "git",
"url": "https://github.com/BlackPrincess/validachan.git"
},
"scripts": {
"prepublish": "npm run release",
"clean": "rm -rf dist .tmp",
"build": "run-p build:cjs build:dev build:prod",
"build:cjs": "rollup -c scripts/rollup.config.js -f cjs -o dist/validachan.cjs.js",
"build:dev": "cross-env NODE_ENV=development rollup -c scripts/rollup.config.js -f umd -o dist/validachan.js",
"build:prod": "cross-env NODE_ENV=production rollup -c scripts/rollup.config.js -f umd | uglifyjs -mc warnings=false --comments -o dist/validachan.min.js",
"build:test": "cross-env NODE_ENV=test webpack --config scripts/webpack.config.test.js",
"watch:test": "cross-env NODE_ENV=test webpack -w --config scripts/webpack.config.test.js",
"lint": "eslint --fix \"@(src|test|scripts)/**/*.js\"",
"testem": "testem",
"testem:ci": "testem ci --launch PhantomJS",
"test": "run-p watch:test testem",
"test:ci": "run-s build:test testem:ci",
"release": "run-s test:ci clean build"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-power-assert": "^1.0.0",
"cross-env": "^3.0.0",
"eslint": "^3.0.0",
"eslint-config-ktsn": "^1.0.0",
"glob": "^7.0.3",
"json-loader": "^0.5.4",
"npm-run-all": "^3.0.0",
"power-assert": "^1.3.1",
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-replace": "^1.1.1",
"testem": "^1.6.0",
"uglifyjs": "^2.4.10",
"webpack": "2.1.0-beta.26"
}
}