-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
78 lines (78 loc) · 2.72 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "js.spec",
"version": "1.0.0-23",
"description": "clojure.spec for Javascript",
"main": "dist/js.spec.js",
"types": "types/index.d.ts",
"scripts": {
"build": "webpack --config webpack.config.js",
"lint": "yarn run lint-src && yarn run lint-test",
"lint-src": "eslint --config .eslintrc.json 'index.js' 'lib/**/*.js'",
"lint-test": "eslint --config .eslintrc.test.json 'test/**/*.js'",
"prepare": "yarn run build",
"test": "yarn run lint && yarn run test-ts && mocha --recursive --compilers js:babel-register test",
"test:watch": "mocha --recursive --reporter=min --watch --compilers js:babel-register test",
"test-ts": "./node_modules/.bin/tsc --noImplicitAny --noEmit test/types/types-test.ts",
"coverage": "babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha -- test --recursive",
"coveralls": "yarn run coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"autobuild": "./node_modules/.bin/nodemon -i 'dist/' -e 'js' -x 'yarn run build'",
"prettier": "./node_modules/.bin/prettier --print-width 80 --write index.js \"lib/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/prayerslayer/js.spec.git"
},
"author": "Nikolaus Piccolotto",
"license": "MIT",
"bugs": {
"url": "https://github.com/prayerslayer/js.spec/issues"
},
"homepage": "https://github.com/prayerslayer/js.spec#readme",
"files": [
"index.js",
"lib/*",
"dist/*",
"types/*"
],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.3",
"babel-istanbul": "0.12.2",
"babel-loader": "7.1.2",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-object-entries": "1.0.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"coveralls": "3.0.0",
"eslint": "4.13.1",
"eslint-plugin-prettier": "2.3.1",
"mocha": "4.0.1",
"nodemon": "1.13.2",
"prettier": "1.9.2",
"pretty-format": "21.2.1",
"typescript": "2.7.2",
"uglify-js": "3.2.2",
"uglifyjs-webpack-plugin": "1.1.4",
"webpack": "3.10.0"
},
"dependencies": {
"lodash.chunk": "^4.2.0",
"lodash.flattendeep": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.isboolean": "^3.0.3",
"lodash.isdate": "^4.0.1",
"lodash.isfinite": "^3.3.2",
"lodash.isfunction": "^3.0.8",
"lodash.isinteger": "^4.0.4",
"lodash.isnil": "^4.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isregexp": "^4.0.1",
"lodash.isset": "^4.4.2",
"lodash.isstring": "^4.0.1",
"lodash.issymbol": "^4.0.1"
}
}