-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "@paralleldrive/feature-toggles",
"version": "1.0.4",
"description": "Low-level feature toggle tools for Node and browsers.",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"engines": {
"node": ">=8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paralleldrive/feature-toggles.git"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "10.1.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"deep-freeze": "0.0.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"express": "4.17.0",
"husky": "2.7.0",
"pre-commit": "1.2.2",
"prettier": "1.19.1",
"pretty-quick": "1.11.1",
"prop-types": "15.7.2",
"riteway": "2.0.8",
"supertest": "4.0.2",
"tape": "4.13.3",
"updtr": "3.1.0",
"watch": "1.0.2"
},
"dependencies": {
"lodash": "4.17.20",
"ramda": "0.27.1",
"url-parse": "1.4.7"
},
"pre-commit": [
"lint",
"pretty-quick",
"test-unit",
"test-integration"
],
"scripts": {
"lint": "eslint src && echo '-- linting finished --'",
"build": "babel src -d dist",
"prettier": "prettier --write 'src/**/*.js'",
"test": "npm run test-unit",
"test-unit": "tape -r babel-register -r babel-polyfill test/unit.js",
"test-integration": "tape -r babel-register -r babel-polyfill test/integration",
"watch": "watch 'npm run --silent test-unit' src",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"pretty-quick": "pretty-quick --staged",
"prepare": "npm run build",
"update": "updtr"
},
"keywords": [
"feature",
"toggles"
],
"author": "Parallel Drive, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/paralleldrive/feature-toggles/issues"
},
"homepage": "https://github.com/paralleldrive/feature-toggles#readme"
}