-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.99 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "tahini",
"version": "1.4.1",
"description": "flexible vocabulary scoping for react",
"scripts": {
"build": "babel -d dist/ src/",
"version": "npm run build && npm publish #also bump version",
"test": "npm run build && npm link && cd canon/todo-app && yarn && npm link tahini && cd ../.. && npm run test:cover",
"test:i": "NODE_PATH=./app mocha --require ignore-styles ./canon/todo-app/scripts/test/with-jsdom.js ./canon/todo-app/scripts/test/with-css-modules.js \"./integrations/**/*.js\" \"./src/network-handlers/*/spec.js\" --compilers js:babel-core/register",
"test:watch": "npm run test:i -- --watch --watch-extensions js",
"test:w": "npm run test:watch",
"test:cover": "NODE_ENV=cover nyc npm run test:i",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"babel": {
"presets": [
"es2015",
"es2016",
"react"
],
"plugins": [
"babel-plugin-syntax-trailing-function-commas",
"babel-plugin-transform-class-properties",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-react-constant-elements"
],
"env": {
"cover": {
"plugins": [
"babel-plugin-syntax-trailing-function-commas",
"babel-plugin-transform-class-properties",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-react-constant-elements",
"istanbul"
]
}
}
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"lcov",
"text-summary"
]
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-syntax-trailing-function-commas": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2016": "^6.11.3",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"coveralls": "^2.11.15",
"css-modules-require-hook": "^4.0.2",
"enzyme": "^2.4.1",
"ignore-styles": "^5.0.1",
"jsdom": "^9.4.5",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.5.3",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"immutable": "^3.8.1",
"react": "^15.5.3",
"react-addons-pure-render-mixin": "^15.3.1",
"react-redux": "^5.0.4",
"redux": "^3.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikfrank/tahini.git"
},
"keywords": [
"react",
"framework",
"lexical",
"scoping",
"components"
],
"author": "nik frank",
"license": "ISC",
"bugs": {
"url": "https://github.com/nikfrank/tahini/issues"
},
"homepage": "https://github.com/nikfrank/tahini#readme"
}