-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "rollup-plugin-invariant",
"version": "0.9.2",
"author": "Ben Newman <ben@apollographql.com>",
"description": "Rollup plugin to strip invariant(condition, message) strings in production",
"license": "MIT",
"main": "lib/plugin.js",
"types": "lib/plugin.d.ts",
"keywords": [
"rollup",
"plugin",
"invariant",
"development",
"production",
"NODE_ENV"
],
"homepage": "https://github.com/apollographql/invariant-packages",
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/invariant-packages.git"
},
"bugs": {
"url": "https://github.com/apollographql/invariant-packages/issues"
},
"scripts": {
"build": "npm run tsc",
"tsc": "../../node_modules/.bin/tsc",
"mocha": "../../node_modules/.bin/mocha --reporter spec --full-trace lib/tests.js",
"prepublish": "npm run build",
"test": "npm run build && npm run mocha"
},
"dependencies": {
"recast": "^0.20.4",
"rollup-pluginutils": "^2.3.3",
"tslib": "^2.1.0"
},
"devDependencies": {
"acorn": "^8.0.4",
"react": "^16.7.0",
"react-apollo": "^2.4.1",
"react-dom": "^16.7.0",
"ts-invariant": "file:../ts-invariant"
},
"engines": {
"node": ">=8"
}
}