-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.54 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
{
"name": "joint-normalizer",
"version": "0.0.8",
"description": "Normalization logic for Joint Kit payloads",
"author": "|M| <manicprone@gmail.com>",
"license": "MIT",
"main": "dist/lib.js",
"repository": {
"type": "git",
"url": "git@github.com:manicprone/joint-normalizer.git"
},
"scripts": {
"build": "cross-env NODE_ENV=build rollup -c",
"prepublish": "npm run build",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"flint": "eslint --fix ./ --cache --ignore-pattern .gitignore",
"build-test": "npm run build && npm run test",
"test": "cross-env NODE_ENV=test mocha --require babel-register test/**/*.spec.js",
"precommit-message": "echo 'Pre-commit checks (linting, building plugin)...' && exit 0"
},
"pre-commit": [
"precommit-message",
"lint",
"build"
],
"dependencies": {
"lodash": "4.17.10"
},
"devDependencies": {
"autoprefixer": "8.5.2",
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-env": "1.5.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.24.1",
"chai": "4.1.2",
"cross-env": "5.1.5",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"mocha": "5.2.0",
"pre-commit": "1.2.2",
"rollup": "0.59.0",
"rollup-plugin-babel": "3.0.4",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-uglify": "3.0.0"
}
}