-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.51 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.51 KB
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
72
73
74
{
"name": "@inlinemanual/coerce",
"version": "1.3.0",
"description": "Configurable utility for coercing values.",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/InlineManual/coerce.git"
},
"author": {
"name": "Riki Fridrich",
"email": "riki@fczbkk.com",
"url": "https://github.com/fczbkk"
},
"contributors": [
{
"name": "Vojtěch Kusý",
"url": "https://github.com/wojtha"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/InlineManual/coerce/issues"
},
"homepage": "https://github.com/InlineManual/coerce#readme",
"scripts": {
"dev": "npm run test:dev",
"test:dev": "npm run test -- --no-single-run --auto-watch",
"test": "cross-env NODE_ENV=es5 karma start ./karma.conf.js",
"cleanup": "rimraf temp lib module",
"prebuild": "npm run eslint:build && npm run cleanup && npm run test",
"build": "npm run compile",
"compile": "npm run compile:es5 && npm run compile:es6",
"compile:es5": "cross-env NODE_ENV=es5 webpack --config ./webpack.config.js",
"compile:es6": "cross-env NODE_ENV=es6 babel src -d module",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"preversion": "npm run cleanup && npm prune && npm install",
"postversion": "git push && git push --tags && npm publish --access=public",
"version": "npm run build && npm run doc && npm run changelog && git add -A",
"doc": "documentation readme ./src/index.js -s 'Documentation'",
"eslint": "eslint ./{src,test}/**/*.js",
"eslint:build": "npm run eslint -- --max-warnings 0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"conventional-changelog-cli": "^1.2.0",
"cross-env": "^3.0.0",
"documentation": "^4.0.0-beta9",
"eslint": "^3.6.0",
"eslint-loader": "^1.5.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-jasmine-diff-reporter": "^0.6.2",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.12",
"rimraf": "^2.5.4",
"webpack": "^1.13.2"
},
"dependencies": {
"parse-relative-time": "^1.0.0",
"safe-query-selector": "^1.0.0"
},
"main": "lib/index.js",
"module": "module/index.js",
"webpack": "module/index.js",
"jsnext:main": "module/index.js"
}